• 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!

Recent content by despion0

  1. D

    [2 Requests] NPC and Item.

    function onUse(cid, item, frompos, item2, topos) local count = getPlayerItemCount(cid, item.itemid) doRemoveItem(item.uid, count) doPlayerAddItem(cid, 2157, count) doCreatureSay(cid, "Frags", TALKTYPE_MONSTER) return true end
  2. D

    [2 Requests] NPC and Item.

    Tested on 3.6, should work now function onUse(cid, item, frompos, item2, topos) local count = getPlayerItemCount(cid, item.itemid) doRemoveItem(item.uid, count) doPlayerAddItem(cid, 2157, count) return true end
  3. D

    [2 Requests] NPC and Item.

    Try function onUse(cid, item, frompos, item2, topos) doRemoveItem(item.uid, 1) doPlayerAddItem(cid, 2157, 1) return true end
  4. D

    Round an PHP value

    Nvm
  5. D

    Round an PHP value

    Does Gesior use jQuery? and turn error reporting on
  6. D

    Round an PHP value

    Try this <script> $(document).ready(function(){ $('#toggleQuests').click(function() { if ($('#contentQuests').is(':visible')) { $('#contentQuests').slideUp('fast'); $(this).html('<span style="color:green;">Show/Hide</span>'); return; }...
  7. D

    Round an PHP value

    So if you click on it once it turns ex: green and if you click on it again it turns red? or should it just stay the same the whole time?
  8. D

    Round an PHP value

    $questPercent = round((($questStatus["value"] - $questData["startvalue"])/$questData["endvalue"]) * 100);
  9. D

    Round an PHP value

    try round(value)
  10. D

    Open Tibia Tool

    No. @others Read some pages please. Link: Click
  11. D

    Open Tibia Tool

    Look at the third page. Or click Here
  12. D

    Open Tibia Tool

    Link works fine for me :huh:
  13. D

    Open Tibia Tool

    V1.3 Sorry for dubble post, New version. Download: v1.3 Information could be found if you press the "news" button on the main screen. But if your to lazy to press that button you could just look here: News/Updates: Fixed script bugs. Remade "database access". If you find any...
  14. D

    Open Tibia Tool

    I've fixed most of the problems, I'll upload v1.3 soon
  15. D

    Open Tibia Tool

    Ok, I'll take a look at the scripts.
Back
Top Bottom