Jump to content

amine2

Members
  • Posts

    12
  • Joined

  • Last visited

amine2's Achievements

Square

Square (6/54)

0

Reputation

  1. And how i can set the max health ?
  2. I need help with setPedStat(). When i use setPedStat() for max health to "150" then the health will be 5 and i cant set the health back to 100 or 150 (I edit the health with admin panel ) function setMaxHealth(player) setPedStat ( player, 24, 150 ) end addCommandHandler("health", setMaxHealth)
  3. when fail in 10 attempts you will have a timer with 24 so the attempts will be 10
  4. How to make max 10 attempts per IP. I have a login panel and i need a tutorial about how i can make max 10 attempts per IP. And after 24 Hours the attempts will be 10.
  5. How to make max 10 attempts per IP. I have a login panel and i need a tutorial about how i can make max 10 attempts per IP.
  6. How to make max account per IP. I have a login panel and i need to make max accounts per IP and i need help.
  7. I have an error while trying to open my file. I have an script that will save your text and when you type "/write" h the script will type what you save. This is the script: function save(command, text) local myFile = fileCreate(myPath) fileOpen(myPath) fileWrite ( myFile, text ) fileClose(myFile) end addCommandHandler("save", save) function writeSaved() local myFile2 = fileOpen(myPath) size = fileGetSize(myFile2) savedText = fileRead ( myFile2, size ) outputChatBox(savedText) fileClose(myFile2) end addCommandHandler("write", writeSaved) I forgot to tell you in the start i put: myPath = "test.txt"
  8. How to make remember me. i have a login panel resource and i need a tutorial about how i can make remember me checkbox.
×
×
  • Create New...