• 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. Dyabl0

    [REAL-OTX] [7.72] [ZNOTE 1.5] Problem with acc

    Make sure you have "sha1" in your config.lua: encryptionType = "sha1"
  2. Dyabl0

    [France] Realera 7.4 | REALMAP + CUSTOM AREAS + NEW BIG QUESTS | MID/HIGHRATE | STARTING 3d FEB-2017

    Come on! This one needs another chance. There are no SMS option available to purchase points. If you just meant to the shop, there are no items that could "ruin" the server at all.
  3. Dyabl0

    SQL error

    Are you sure you are running MySQL correctly? You don't receive any errors? Try uncommenting this in your php.ini: ;extension=php_pdo_mysql.dll
  4. Dyabl0

    Spell Search Player

    Looks very fresh, good job. Give to the community some chances to grow, what matters if he copied? If he did so, prove it so we can all laugh.
  5. Dyabl0

    Cannot use tables, lamps etc.

    Add the following code in your actions.xml: <action fromid="1634" toid="1641" script="other/decayto.lua" /> Go to data/actions/scripts/other/decayto.lua and inside local decayItems = { add: [1634] = 1635, [1635] = 1634, [1636] = 1637, [1637] = 1636, [1638] = 1639, [1639] = 1638, [1640] = 1641...
  6. Dyabl0

    Lua Make NPC not to answer to "Hi" or "Hello"

    You can simply add a new greet message on focus in King Tibianus.lua: local focusModule = FocusModule:new() focusModule:addGreetMessage('hail king') focusModule:addGreetMessage('salutations king') npcHandler:addModule(focusModule) The lua file should be like this: local keywordHandler =...
  7. Dyabl0

    Stamina not working (OTX 3.9)

    Make sure you have included the following code to your global.lua: if nextUseStaminaTime == nil then nextUseStaminaTime = {} end
  8. Dyabl0

    Errors with spells

    Those functions are missing in your server. Check them in your source files if they exist. You can find them inside spells.h: static InstantSpellFunction HouseGuestList; static InstantSpellFunction HouseSubOwnerList; static InstantSpellFunction HouseDoorList; static InstantSpellFunction...
  9. Dyabl0

    Remove pz locked if player walk on protection zone

    Usually this happens when you get teleported to the temple or depot, and if you are PZ locked, you have to relog in order to remove it. Perhaps that's what he meant, when player steps PZ tile with PZ locked automatically removes it.
  10. Dyabl0

    AAC Can't login on website after creating account

    Did you change any password manually from phpmyadmin? If you did so, it has to be encrypted in SHA1, unless it will show wrong password.
  11. Dyabl0

    Nicaw 7.6 Spell.php, Monsters.php, Houses.php ....

    Try downloading this file which it include those files except Monster.php, so you can copy them: https://mega.nz/#!x45F0CCJ!cl6RaP3tkC7RsBS29t-yzpksvMKgSfdOkV-W-rLTQkY
  12. Dyabl0

    Linux Mysql error

    Did you setup MySQL? If so, there is no existing database called "forgottenserver". In this case you must import sql file to your database and should be fine. If you already have it, change the name to the one you got on database inside config.lua.
  13. Dyabl0

    Windows tfs 1.2 Znote Unknown column

    The errors are due to implementation of cast system, but your database hasn't got those tables and columns which causes those errors: ALTER TABLE `players` ADD `viewers` int(11) not null default '0';
  14. Dyabl0

    Windows tfs 1.2 Znote Unknown column

    Try with this: ALTER TABLE `players`ADD `broadcasting` INT NOT NULL DEFAULT 0;.
  15. Dyabl0

    Windows tfs 1.2 Znote Unknown column

    Have you got column 'exphist_lastexp' in players table? If no, inside phpmyadmin -> select your database -> sql -> paste: ALTER TABLE `players` ADD `exphist_lastexp` BIGINT( 255 ) NOT NULL DEFAULT '0', ADD `exphist1` BIGINT( 255 ) NOT NULL DEFAULT '0', ADD `exphist2` BIGINT( 255 ) NOT NULL...
  16. Dyabl0

    Captain npc not working

    The problem which is causing NPC to not respond is inside addTravelKeyword you have town names start with uppercase which is not necessary. -> keyword:titleCase() already does this for you when player asks for the town name. TL;DR Change: addTravelKeyword('Valhedge', 30, Position(431, 420, 6))...
  17. Dyabl0

    [France] Realera 7.4 | REALMAP + CUSTOM AREAS + NEW BIG QUESTS | MID/HIGHRATE | STARTING 3d FEB-2017

    After server save the server it turns offline and a gamemaster has to use /openserver in order to allow players to connect. It will be fixed after next server save and as soon as gamemasters are available, the server will go up.
  18. Dyabl0

    Need help with potions bug

    There is a similar case to yours: https://otland.net/threads/bug-when-using-potions.148383/ Solution: https://otland.net/threads/bug-when-using-potions.148383/#post-1459122 (I do not recommend just copy pasting, most likely it will be incompatible and might require some changes).
  19. Dyabl0

    item editor

    You should take a look here: https://otland.net/threads/how-to-quests.148708/
  20. Dyabl0

    item editor

    Open the items.xml file with Notepad++ and press CTRL+F, search for the item you want to change attributes to. For example, fire sword: As you can see there below you have some attributes, now you can simply change the value inside value="#". For additional attributes, you have to figure out...
Back
Top