Sls64LGamingBro

Hello, I wanna introduce my self in here. My name is Sls64LGamingBro, am in love with this depth of SRB2 and it's Lovely Community support. It has it's own message board site and srb2 website as well too, I also a modder and sometimes good at LUA as it's a base scripting program. I am sometimes not very good at creating maps... But it's ok, I can try to continue trying again and again and forever.
Birthday
May 10
Location
Through Space (In Galaga)

Signature

I really just think coding is much better for me, Because it's cool.


Look what I can do by this!


Cool Script:
//My code, I made it.
//It's a lua script in SRB2
//Sonic gets the Upward Thok

addHook("JumpSpinSpecial", function(player)
    if (player.mo.skin == "sonic")
         if not (player.pflags & PF_THOKKED)
            P_SetObjectMomZ(player.mo, 17*FRACUNIT)
            S_StartSound(player.mo, sfx_thok)
            P_SpawnThokMobj(player)
            player.pflags = $1|PF_THOKKED
         end
     end
end)
Back
Top