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

  1. V

    Monster don't die and quest aren't quest, URGENT!

    Hmmm, then you should check in your scripts that have this problem for something like this: local bag = doPlayerAddItem(cid, 200, 1) item_uid = doAddContainerItem(bag,5907,1) and doAddContainerItem(bag,2160,30) and doAddContainerItem(bag,6512,1) and doAddContainerItem(bag,2150,30) As you can...
  2. V

    Lua Whats wrong with it- Chest quest

    Try this: function onUse(cid, item, frompos, item2, topos) if item.uid == 6665 then queststatus = getPlayerStorageValue(cid,6665) if queststatus == 1 then doPlayerSendTextMessage(cid,MESSAGE_EVENT_ADVANCE,"This Chest is empty.") else doPlayerSendTextMessage(cid,MESSAGE_EVENT_ADVANCE,"You...
  3. V

    Problem with NPCs

    You need to import NPC's first. File>Import>Import Monster/Npc then you must reload Remere by selecting File>Reload
  4. V

    MySQL connection errors

    If you have all files from your website you can import samples back from the db provided with the instalation of website. Edit: You can try this: INSERT INTO `players` (`id`, `name`, `world_id`, `group_id`, `account_id`, `level`, `vocation`, `health`, `healthmax`, `experience`, `lookbody`...
  5. V

    Monster don't die and quest aren't quest, URGENT!

    Itens inside containers must be edited in map first, then you must add an action id to each chest, with a script and add a tag into actions.xml into ..data/actions Example of tag on actions.xml: <action actionid="5800" script="questt/questt20.lua" /> actionid="xxx" is the same you...
  6. V

    MYSQL, Storages and Values in Alfanumeric

    Hello OtLand Community!! I was questioning myself what would happen if I use letters as storages and values in players_storage. Then, I made a NPC and set storage as "rex" and value as 1. During my interaction with that NPC I could find out that the storage "rex" and value "1" were...
  7. V

    Lua Outfits and exhaustion.set

    I don't have a code to make outfit work with X storagevalue, is that what I'm looking for. By default server takes only value '1' as a condition to make outfit wearable. My server version I'm not sure, but it is a 8.54 base server. The most recent scripts that I found here seem fully...
  8. V

    GlobalEvent Stream Live From Your Website!

    I would like to see any demo website with that. Any one has it to show working? I would like to confirm if it is as just amazing as it looks! Great job!!
  9. V

    Lua Outfits and exhaustion.set

    Hello there everybody! I'm trying to make my Santa Claus NPC work with exhaustion.set(), the NPC work just perfect. My problem is that it also use the same storage to christmas outfit. When I do manually set this storage to 1, player can use christimas outfit, if this value is greater...
  10. V

    Solved Problem with website showing StorageValue "value" as Array

    Problem solved by simply using: print_r($query['value']+1); print_r() Shows on screen, arrays in a way humans can understand. $query['value'] Is the MySql Array I was trying to show on screen. +1 Due to the query was counting value 0 as 1, then adding +1 will make display 0 as 1, 1 as 2...
  11. V

    Solved Problem with website showing StorageValue "value" as Array

    I'm trying to show on website the current time a player have defeated a monster using by referrence the "value" of a StorageValue. But when I do the query, page displays only "Array". I can't number each iten of the list beacause it should be 'endless', as the player would fight the...
  12. V

    Premium Points System Help

    You can block it using config.lua in your OT's main folder. If you mean you want to block account 1/1 from login in via website, then just go to your DB and change password of account 1 to a different one, or even delete it (the whole account) if you wish to. Good luck!
  13. V

    Lua Help with "getAccountVipTime(accountName)" function.

    I'm using this function on my actual server ( The Forgotten Server - Version 0.2.13 (Mystic Spirit). 9.51), I had it in a 8.51 working just perfect, but it just won't work on my actual server. I'm trying to adapt the script that goes on global.lua This is the main function: function...
  14. V

    Lua Free Blessing Stone Problem.

    I'm using the script of Blessing Stone from this thread http://otland.net/f16/free-blessing-stone-165759/. It wasn't working at all for bad formatation at "7" part. I did change it, now it loads properly, but when I do click the item I set up to give you the blessing console returns this...
  15. V

    Lua Some questions about Quests.xml

    There's any way of making line break on Questlogs ? <quest name="Disgracing Their Forstress!!" startstorageid="6001" startstoragevalue="1"> <mission name="Help Liutenant Muriel in his duty!!" storageid="6001" startvalue="1" endvalue="51"> <missionstate id="51" description="You have...
Back
Top