Sls64LGamingBro

Yeah, Hi there... I'm just an ordinary person who comes in the SRB2 community, and the sonic fanbase. I also use LUA, as it's a base scripting program for people who wanted to learn about coding. I have a Youtube Channel, it's kind of interesting, hopefully you'll like it? Heh... I have a website, it's fine if you wanna look at it.
Birthday
May 10
Website
https://sites.google.com/view/sls64lgbro/home
Location
Space (In Galaga)

Signature

I don't really have anything to say. A person who plays SRB2 and modifies the game for fun. I also made a script for players that wanna start something simple and manageable for players who wanna code SRB2's Lua functions.

Upward Thok Script:
//It's a stupid script made for players who wanna use this script as their starting point for coding Lua in SRB2.
//This script gives Sonic the Upward Thok. A pretty simple second ability.

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

Oh yeah. I also have a Work in Progress thread to showcase my wonderful skills at coding, mapping, characters, and lots more I modifiy on SRB2. I've also made an OC character addon called Seles The Arctic Fox. It's a pretty cool addon I made myself, go check it out!
Back
Top