Recent content by HMSREBORN

  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
Back
Top