• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Search results

  1. D

    Lua Script Resets System (otx2- Clinet 8.60)

    Try this function onSay(cid, words, param) local playerStorage = getPlayerStorageValue(cid, 14335) local resetLevels = { { levelRequired = 500, maxHealth = 500, maxMana = 500 }, { levelRequired = 1000, maxHealth = 1000, maxMana = 1000 }, { levelRequired = 2000...
  2. D

    Lua Script Resets System (otx2- Clinet 8.60)

    function onSay(cid, words, param) local rebornLevels = { { requiredLevel = 500, maxHealth = 500, maxMana = 500 }, { requiredLevel = 1000, maxHealth = 1000, maxMana = 1000 }, { requiredLevel = 2000, maxHealth = 1500, maxMana = 1500 }, { requiredLevel = 3500...
  3. D

    Lua Script Resets System (otx2- Clinet 8.60)

    function onSay(cid, words, param) local rebornLevels = { { requiredLevel = 500, maxHealth = 500, maxMana = 500 }, { requiredLevel = 1000, maxHealth = 1000, maxMana = 1000 }, { requiredLevel = 2000, maxHealth = 1500, maxMana = 1500 }, { requiredLevel = 3500...
  4. D

    Lua Script Resets System (otx2- Clinet 8.60)

    check this function onSay(cid, words, param) local rebornLevels = { { requiredLevel = 500, maxHealth = 500, maxMana = 500 }, { requiredLevel = 1000, maxHealth = 1000, maxMana = 1000 }, { requiredLevel = 2000, maxHealth = 1500, maxMana = 1500 }, {...
  5. D

    Lua Script Resets System (otx2- Clinet 8.60)

    qual versão do tfs você tem?
  6. D

    Lua Script Resets System (otx2- Clinet 8.60)

    check too db.executeQuery function onSay(cid, words, param) local rebornLevels = { { requiredLevel = 500, maxHealth = 500, maxMana = 500 }, { requiredLevel = 1000, maxHealth = 1000, maxMana = 1000 }, { requiredLevel = 2000, maxHealth = 1500, maxMana = 1500 }...
  7. D

    Lua Script Resets System (otx2- Clinet 8.60)

    Não falo mais nada, só quero te ajudar, relaxe function onSay(cid, words, param) local rebornLevels = { { requiredLevel = 500, maxHealth = 500, maxMana = 500 }, { requiredLevel = 1000, maxHealth = 1000, maxMana = 1000 }, { requiredLevel = 2000, maxHealth = 1500...
  8. D

    Lua Script Resets System (otx2- Clinet 8.60)

    You are told what to change, follow the instructions or do nothing
  9. D

    Lua Script Resets System (otx2- Clinet 8.60)

    change this function onSay(cid, words, param) local currentReborn = 1 currentReborn = currentReborn + 1 YOUR CODE end And if you forgot about the database, set the value there function onSay(cid, words, param) local rebornLevels = { { requiredLevel = 500...
  10. D

    Lua Script Resets System (otx2- Clinet 8.60)

    Remmeber db.executeQuery function onSay(cid, words, param) local maximum = { player = getPlayerGUID(cid), lvlmax = 8 } if getPlayerStorageValue(cid, 14335) < 0 then if getPlayerLevel(cid) >= 500 then setPlayerStorageValue(cid, 14335...
  11. D

    Linux How to secure a Linux server

    good Tutorial bro <3
  12. D

    TFS 1.X+ database problem

    It sounds like you may need to implement a script or a CRON job that will update your database periodically. If your current method doesn't involve automatic updates, then it will need to be changed to something that does.
  13. D

    Lua Spell that requires an item + sets cooldown

    This example, SPELL_COOLDOWN_STORAGE is a unique storage value that is used to store the end time of the spell's cooldown. onCastSpell() function checks if the player has the required weapon equipped and if the spell is on cooldown. If the checks pass, the spell is executed, and the cooldown is...
Back
Top