Search results for query: *

  1. SapphireTheGreat

    Admin Commands

    SapphireTheGreat submitted a new resource: Admin Commands - #lua Read more about this resource...
  2. SapphireTheGreat

    How do i update addons in message board?

    I really need help on how to update mods, it doesnt let me update my addons or do anything.
  3. SapphireTheGreat

    how can i make it the player can only use this ability once?

    addHook("PlayerThink", function(player) if player.mo and player.mo.skin == "sonic" if (player.cmd.buttons & BT_CUSTOM2) and not (player.pflags & PF_JUMPED or player.pflags & PF_SPINNING) and (P_IsObjectOnGround) P_SetObjectMomZ(player.mo, 15*FRACUNIT) end end end)
  4. SapphireTheGreat

    How to make it to work it gave the error "pseudo-variable out of range or not in assignment near '$' ?

    addHook("PlayerThink", function(player) if player.mo and player.mo.skin == "h.r" if player.pflags == $2|PF_STARTJUMP|PF_STARTDASH player.mo.state = S_PLAY_JUMP P_SetObjectMomZ(player.mo, 15*FRACUNIT) P_SpawnThokMobj(player) end end)
  5. SapphireTheGreat

    How to fix?

    // Super sonic! addHook("PlayerThink", function(player) freeslot("sfx_hmssuper") if player.powers[pw_super] and player.mo and player.mo.skin == "h.r" S_StartSound(player.mo, sfx_hmssuper) if not player.powers[pw_super] and player.mo and player.mo.skin == "h.r"...
Back
Top