LeoTheHedgehog12
Good boi.
I'm able to add the textures perfectly fine, but the map makes the game crash (except for in 2213 for some reason)
wip spriteI've been talking about work in progress mods and only having one page that isn't entirely wip
Leo, you gonna restore the Pipe Towers from .14?on that Pipe Towers restoration of yours?
Leo, you gonna restore the Pipe Towers from .14?
I'm able to add the textures perfectly fine, but the map makes the game crash (except for in 2213 for some reason)
![]()
![]()
![]()
![]()
![]()
Lookin' nice so far!wip sprite
View attachment 156393
why did you put this here and is this modified coderedhot69's bad scripts that i could never make work
1. 2 shadow scripts that try to replicate both of his abilities from sonic exe the disaster
boost(its not a boost either)
addHook("PlayerThink", function(player)
if player.mo.skin == "shadow"
if (player.cmd.buttons & BT_CUSTOM2)
and P_IsObjectOnGround(player.mo)
and (player.mo.state == S_PLAY_STND) then
P_InstaThrust(player.mo, player.mo.angle, 20*FRACUNIT)
P_SetObjectMomZ(player.mo, 5*FRACUNIT)
player.mo.state = S_PLAY_SPRING
end
end
end)
Homing attack (this is no fucking homing attack when you have to aim it idk why they named it like that)
addHook("PlayerThink", function(player)
if player.mo.skin == "shadow"
if (player.cmd.buttons & BT_CUSTOM1)
and not P_IsObjectOnGround(player.mo)
and (player.mo.state == S_PLAY_JUMP) then
P_InstaThrust(player.mo, player.mo.angle, 30*FRACUNIT)
player.mo.state = S_PLAY_ROLL
player.pflags = $|PF_SPINNING
end
end
end)
2. another script that tries to replicate sonics sonic the fighters ability and didnt work either not sure why
addHook ("PlayerThink", function(player)
if player.mo.skin == "sonic"
if player.cmd.buttons & BT_CUSTOM1
and P_IsObjectOnGround(player.mo)
and player.mo.state == S_PLAY_RUN or S_PLAY_WALK or S_PLAY_STND then
P_InstaThrust(player.mo, player.mo.angle, 5*FRACUNIT)
P_SetObjectMomZ(player.mo, 15*FRACUNIT)
player.mo.state = S_PLAY_ROLL
player.pflags = $|PF_SPINNING
end
end)
its not modified as i made it all and i had nowhere else to put =( (forgiv me plsiwhy did you put this here and is this modified code
that's entirely unrelated to the threadits not modified as i made it all and i had nowhere else to put =( (forgiv me plsi)
redhots bargain bin released now!that's entirely unrelated to the thread
not unrelated as somenthing like this thread is like you show things you didnt finish yet or will never finishthat's entirely unrelated to the thread
DUDE YOU STOLE MY ENTIRE BRANDING!redhots bargain bin released now!
Dude, this is for MY stuff that I haven't finished. NOT YOURS. Next time use your own thread (and next time namee it something unique, bud.)not unrelated as somenthing like this thread is like you show things you didnt finish yet or will never finish
get stolen and now i will post my entire bible of unfinished mods/scripts(Joke)DUDE YOU STOLE MY ENTIRE BRANDING!
Dude, this is for MY stuff that I haven't finished. NOT YOURS. Next time use your own thread (and next time namee it something unique, bud.)
That’s not plagiarism. You’re not the first person in the world to have it something something’s bargain brand. Don’t treat it like it’s your brand.DUDE YOU STOLE MY ENTIRE BRANDING!
Dude, this is for MY stuff that I haven't finished. NOT YOURS. Next time use your own thread (and next time namee it something unique, bud.)
goodness all I said was they knocked me off. They made a wip thread named the same thing but with a different name after being told they need to make their own thing. you're always the first one to jump the gun whenever I say anything.That’s not plagiarism. You’re not the first person in the world to have it something something’s bargain brand. Don’t treat it like it’s your brand.
Hey dude, I'm sure he was jokingly exaggerating. (@LeoTheHedgehog12 , you were, right?)That’s not plagiarism. You’re not the first person in the world to have it something something’s bargain brand. Don’t treat it like it’s your brand.
A little bit. I just didn't like them posting unrelated code in this thread, then stealing my name idea.Hey dude, I'm sure he was jokingly exaggerating. (@LeoTheHedgehog12 , you were, right?)
i actually didnt i was joking i dont have any thread for a wip thing yetgoodness all I said was they knocked me off. They made a wip thread named the same thing but with a different name after being told they need to make their own thing. you're always the first one to jump the gun whenever I say anything.
Also @GT_Trunks I am pretty sure that was a… joke?goodness all I said was they knocked me off. They made a wip thread named the same thing but with a different name after being told they need to make their own thing. you're always the first one to jump the gun whenever I say anything.
Team Blue Springs (who made the Game Styles mod) made Pipe Towers Revamped, which is exactly it, and it's here (it's been here for a looong time.)Quick! Does anyone have 2.2.14 still?? I'm trying to recover that version's pipe towers! If you have it, send the srb2.pk3 and zones.pk3!
Ahh well thanks for clarifying that!Also @GT_Trunks I am pretty sure that was a… joke?
addHook("TouchSpecial", function(special, player)
player.counter = $+1
end, MT_RING)
Hmm... Maybe you should make sure to check if the value isn't nil before modifying it. SRB2 can be a little tricky sometimes.Does anyone know how to make this work? it keeps saying the variable is a nil value, even though I've given it a value in other lines of code.
* THE CODE *
addHook("TouchSpecial", function(special, player)
if player.counter != nil
player.counter = $+1
end
end, MT_RING)