• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Search results

  1. Blixmo

    Server down?

    Hello, I can't ping or access my server, what's wrong? This is the third time I experience serious downtime from you in 2.5 months... Also your client area says network status: fine.
  2. Blixmo

    Lua King Tibianus dont answer

    Hmm okay, and the script fil is located at: data/npc/scripts/Sell/promotion.lua ?
  3. Blixmo

    Lua How to change the Offline training ??

    http://otland.net/threads/change-rates-for-offline-training.200067/
  4. Blixmo

    Solved Get Ward/Rod when reach level !

    Try to search... http://otland.net/threads/when-you-get-level-x-you-get-money-x.121799/ http://otland.net/threads/reward-on-x-level.150694/ http://otland.net/threads/get-item-on-certain-level.167114/
  5. Blixmo

    Lua King Tibianus dont answer

    Hum ok, strange... Then just create a new .xml file and paste in your NPC code? Remove the - before <npc> and <paramters> and it should work.
  6. Blixmo

    Lua How to change the Offline training ??

    Kk, then you can only change the offline training rates if you change the source code and recompile it.
  7. Blixmo

    Problem with Tibia smoothness

    Try to lower your desktop resolution.
  8. Blixmo

    Lua How to change the Offline training ??

    Some more information wouldn't hurt... Dist, version etc. Also, if you're using TFS I doubt there is any default setting for this, so you've to change the .cpp files with the correct code and recompile the sources to be able to edit them.
  9. Blixmo

    Windows Cheap Tibia server Root ?

    There is nothing wrong about it, you're doing what everyone whos kinda serious should do. But when you say "rent a root" we don't understand what you mean, thats why. You can either rent a VPS or a Dedicated Server for your purpose. I recommend DDG...
  10. Blixmo

    Lua King Tibianus dont answer

    Hello, if you check your NPC once again, you will se invalid XML at the start of the parameters tag: -<parameters> Remove the - and try again. You could also remove the shop functions from the XML (if you don't have any sellables) <parameter value="1" key="module_shop"/> <parameter value=""...
  11. Blixmo

    Lua NPC not working properly.

    Hello, so hes answering your greet but when you try mark or heal nothing happends? If you get no errors in the console I doubt it's any syntax error, could be this part: if(not npcHandler:isFocused(cid)) then return false end probably return false and kills the script. Try to uncomment it...
  12. Blixmo

    can someone remake npc script

    local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) local talkState = {} function onCreatureAppear(cid) npcHandler:onCreatureAppear(cid) end function onCreatureDisappear(cid)...
  13. Blixmo

    can someone remake npc script

    if(getPlayerItemCount(cid, 10309) >= 1) (checks if player have 1 or more if item 10309) should be for example: if(getPlayerItemCount(cid, 10309) >= 1000) - 1000x (checks if player have 1000 or more if item 10309) if(doPlayerRemoveItem(cid, 10309, 1) == TRUE) then (removes 1 item of id 10309...
  14. Blixmo

    Znote AAC 1.4 - [TFS 0.2.13+] & [TFS 0.3.6+/0.4]

    Hello again, now I'm having problem with the reset password function. It returns the encoded PW instead of the actual password and if you use the encoded one you can't login ofc. Anyone else with this issue?
  15. Blixmo

    Znote AAC 1.4 - [TFS 0.2.13+] & [TFS 0.3.6+/0.4]

    Solved by changing : <!-- CHARACTER LIST --> <?php if (user_character_hide($profile_data['name']) != 1 && user_character_list_count(user_character_account_id($name) > 1) { ?> to <!-- CHARACTER LIST -->...
  16. Blixmo

    Change rates for offline training

    Yeah, tought so too. Was just hoping it could be removed from beds without modifing the source code. Well, thanks for the help. I guess this one is solved now then.
  17. Blixmo

    Change rates for offline training

    Okay, and that's the only way to modify the rates or to delete the offline training from beds?
  18. Blixmo

    Change rates for offline training

    And this can be done without recompiling? Thanks!
  19. Blixmo

    Change rates for offline training

    Hello, is it possible to change the rates for the bed offline training system? I've not managed to remove it without making changes to the /src folder so I wanna try to lower the rate instead, if it's possible? TFS 0.3.7 Thanks
  20. Blixmo

    Znote AAC 1.4 - [TFS 0.2.13+] & [TFS 0.3.6+/0.4]

    Having problems with the guild page when looking at a guild, following errors (above invite field): Notice: Undefined variable: highest_access in guilds.php on line 193 Notice: Undefined variable: highest_access in guilds.php on line 193 Notice: Undefined variable: char_count in guilds.php on...
Back
Top