Search results for query: *

  1. HMSREBORN

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

    i found a problem that i really need your help to fix
  2. HMSREBORN

    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" and player.cmd.buttons & BT_CUSTOM2 and not (player.pflags & PF_THOKKED) and not (player.pflags & PF_STASIS) and not (player.pflags & PF_FULLSTASIS) and...
  3. HMSREBORN

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

    it's doing the same thing
  4. HMSREBORN

    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)
  5. HMSREBORN

    LUA scripting downthrust problem

    the entire code is wrong
  6. HMSREBORN

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

    I really need help on checking if the player has pressed the custom1 key, it's gonna launch the player upwards. And when i make a script that everytime the custom1 key is pressed, I can use the ability multiple times, idk how to make it to only work one time.
  7. HMSREBORN

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

    Ok then it's ok, so could u help me on making sparkles like super sonic that only works with the skin "h.r" and can kill enemies but not players with the skin "h.r" ?
  8. HMSREBORN

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

    When i executed it, it messed up and i didnt press jump and spin and it go upwards forever bruh not helpful
  9. HMSREBORN

    Pencil Drawson (CODER(S) WANTED)

    Sls i really need help it gives a pseudo variable error: // Jump and spin detection 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)...
  10. HMSREBORN

    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)
  11. HMSREBORN

    How to fix?

    When i am super it looped the thok sound and play the default super sound
  12. HMSREBORN

    How to fix?

    it gave bad argument #2 to 'S_StartSound' number expected, got nil"
  13. HMSREBORN

    How to fix?

    but how it would look like? i don't know what to do
Back
Top