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

    OTClient Change name and icon otclient

    Im not sure about that, you can try, but if it doesnt you can use other tools like i mentioned in my post above
  2. Sparkles

    OTClient Change name and icon otclient

    If changing icon inside of the source code and rebuilding it doesnt solve it (changing the exe icon) you can use tools like resource editor to do it. Keep in mind that icons are cached on the computer, meaning that if you already have an exe with the same name and different icon, in the same...
  3. Sparkles

    C++ TFS 1.5 7.72 Downgrade Nekiro - sendChannelMessage Not Working

    That looks exactly like it should :) however the function is called sendTextMessage as in player:sendTextMessage() ex.. player:sendTextMessage(MESSAGE_INFO_DESCR, 'Hello’)
  4. Sparkles

    TFS 1.X+ ban script error tfs 1.2

    local banDays = 7 function onSay(player, words, param) if not player:isGod() then return true end local name, reason = param:match("^(%S+)%s*(.*)$") if not name or name:len() == 0 then return false -- Invalid parameters end local accountId =...
  5. Sparkles

    [TFS 1.5] NPC buying rare equipped item

    add a check here to see if item is equipped or not https://github.com/otland/forgottenserver/blob/f3d8747b537f3883b9204c1beb68cb69e8642917/data/npc/lib/npcsystem/modules.lua#L1046
  6. Sparkles

    cast system tfs 1.4

    https://github.com/otland/forgottenserver/compare/master...djarek:forgottenserver:casting_system
  7. Sparkles

    AAC add samples myaac tfs 1.5

    INSERT INTO `players` (`id`, `name`, `group_id`, `account_id`, `level`, `vocation`, `health`, `healthmax`, `experience`, `lookbody`, `lookfeet`, `lookhead`, `looklegs`, `looktype`, `lookaddons`, `direction`, `maglevel`, `mana`, `manamax`, `manaspent`, `soul`, `town_id`, `posx`, `posy`, posz`...
  8. Sparkles

    AAC add samples myaac tfs 1.5

    INSERT INTO `players` (`id`, `name`, `group_id`, `account_id`, `level`, `vocation`, `health`, `healthmax`, `experience`, `lookbody`, `lookfeet`, `lookhead`, `looklegs`, `looktype`, `maglevel`, `mana`, `manamax`, `manaspent`, `soul`, `town_id`, `posx`, `posy`, `posz`, `conditions`, `cap`, `sex`...
  9. Sparkles

    AAC add samples myaac tfs 1.5

    run in phpmyadmin sql query INSERT INTO `players` (`id`, `name`, `world_id`, `group_id`, `account_id`, `level`, `vocation`, `health`, `healthmax`, `experience`, `lookbody`, `lookfeet`, `lookhead`, `looklegs`, `looktype`, `lookaddons`, `maglevel`, `mana`, `manamax`, `manaspent`, `soul`...
  10. Sparkles

    Double XP issue

    add this setPlayerStorageValue(cid, 3000, 1) below this setPlayerStorageValue(cid, config.register, 1) in the first codeblock
  11. Sparkles

    LUA Tools help

    Notepad++
  12. Sparkles

    TFS 1.3 BUY PASS TO TRAINER

    Its the corners of the area, "top left" and "bottom right"
  13. Sparkles

    Do you need another staff member?

    Yes, my work consist of managing servers, mostly. I would have placed this is the Jobs board, if I was planning to make money, which I am not. 1597451519 First off Yes, I do know a thing or two about this and a thing or two about that. Second, If I do not see my personal projects as failures...
  14. Sparkles

    Do you need another staff member?

    Do you feel overworked? Do you think you have too much on your plate? Before I get to the good stuff, let me introduce myself. My name is Toby. Im 24 years old and currently working for one of the largest IT companies in Norway. If im being honest, the work there is pretty boring and I often...
  15. Sparkles

    Lua Help with this vip lever

    local config = { storage = 82082, days = 2 } function onUse(cid, item, fromPosition, itemEx, toPosition) if item.itemid == 1945 then if getPlayerStorageValue(cid, config.storage) == -1 then setPlayerStorageValue(cid, config.storage, 1)...
  16. Sparkles

    Working Object Builder 10.98

    https://otland.net/threads/objet-builder-problem-with-version-10-98.266947/#post-2577999 Also make sure you have adobe air Adobe - Adobe AIR (https://get.adobe.com/air/)
  17. Sparkles

    missing function? help

    Maybe post data/actions/scripts/ezipsoft/scarlett_bossFight.lua script for us to see.
  18. Sparkles

    MyPhpAdmin

    How about just adding a Town with ID 1 in map editor by pressint CTRL+T, you dont have to use it for anything other than respawn ^.-
  19. Sparkles

    OTClient discover rsa

    https://otland.net/threads/otclient-v8-block-on-serv.268512/page-2#post-2592117
  20. Sparkles

    Items aren't stacking

    Its worth a shot either way, sounds like a mismatch from the dat and otb file. https://github.com/nekiro/7.72-dat-editor/releases/tag/v1.0-beta
Back
Top