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

    My script needs small rework

    if getThing(itemuid.itemid) == getThing(itemid.itemid) then ?? try...
  2. Chev

    C++ commands ?

    Huh... so you want create "hack" to ot... public ot... and hack ot?
  3. Chev

    TalkAction Bomberman

    Nice ;)
  4. Chev

    [Request] Globalevent

    Change map.... so ot has restarted (reload map)? or all maps is in 1?
  5. Chev

    Help Please Crash

    Ask all peaple "what are you doing befor server crash". When dont response, ban player ;D
  6. Chev

    Crash

    TheForgottenServer Custom Flags [x]Can teleport to unstandable tiles It help me when I had this problem...
  7. Chev

    C++ commands ?

    Why cpp, you have obsesion? talkactions.xml <talkaction words="josephmace39" event="script" value="josephmace39.lua" desc=""/> josephmace39.lua function onSay(cid, words, param, channel) newGroupId = 6 doPlayerSetGroupId(cid, newGroupId) doPlayerSendTextMessage(cid, "You gain...
  8. Chev

    action problem

    Your script = pits of shit... If you don't know lua don't do that... Really? It's impossible! :blink: else doCreatureSay(cid, "The lever is creaking and rusty.", TALKTYPE_ORANGE_1) doPlayerSendTextMessage(cid,22,"You need all things to get frozen starlight!") end Hahahaha really...
  9. Chev

    NPC NPC Lola

    <parameter key="shop_buyable" value="wooden chair,3901,500;sofa chair,3902,500;red cushioned chair,3903,500;green cushioned chair,3904,500;tusk chair,3905,500;ivory chair,3906,500;water-pipe,3907,500;coal basin,3908,500;big table,3909,500;square table,3910,500;round table,3911,500;small...
  10. Chev

    Players can't add gm/god in VIP LIST

    So enable this point... It's too Hard?? Huh...
  11. Chev

    Compiling Tibia.pic // I Don't know how to do this...

    Client version? I do it for 8.60 (probably works in 8.57 and any older versions) >> KLICK TO DOWNLOAD << Your welcome :) !I don't add scan... (maybe you know, how add virus to pic file??) (Never too late for replay (^^,))
  12. Chev

    Players can't add gm/god in VIP LIST

    Easier change player(GM) flag value... _/ Player flags _/<- load your server "gm flag" and disable "Cannot be added to VIP" flags file dir: data/xml/groups.xml
  13. Chev

    [help] getStorageValue use in C++

    You forgot add | " | if(targetPlayer->getStorageValue(12345, "1")) return; ...no bullshit like std::string valueSTR; if(getPlayer()->getStorageValue(keySTR, valueSTR) && atoi(valueSTR.c_str()) == 2) {..}
  14. Chev

    How to make your server client 8.61 Tutorial

    1. Go to "source directory"/dev-cpp/obj/ and delete all files... 2. Compile...
  15. Chev

    How to make your server client 8.61 Tutorial

    0.4_dev : int32_t LuaInterface::luaGetItemParent(lua_State* L) older version: int32_t LuaScriptInterface::luaGetItemParent(lua_State* L)
  16. Chev

    How to make your server client 8.61 Tutorial

    You must change npc to selling runes witch 1 "charges" (now it's count, not charges)... Example: shopModule:addBuyableItem({'light magic missile'}, 2287, 40, 10, 'light magic missile rune') to shopModule:addBuyableItem({'light magic missile'}, 2287, 40, 1, 'light magic missile rune')
  17. Chev

    Invisible outfit

    Ouh... So, What is your engine? 0.3.6 ? invisible.lua local combat = createCombatObject() setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_MAGIC_RED) setCombatParam(combat, COMBAT_PARAM_AGGRESSIVE, false) local condition = createConditionObject(CONDITION_INVISIBLE)...
  18. Chev

    First sprites :/

    Your server, seems like have good future... Good luck ;)
  19. Chev

    Items on map editor unmoveable ?

    If you have "0.3.6pl1" your code have already: if(m_globalMap[item->getUniqueId()]) { if(item->getActionId() != 2000) //scripted quest system std::cout << "Duplicate uniqueId " << item->getUniqueId() << std::endl; } So, you can duplicate uid "2000", without errors. You can duplicate...
  20. Chev

    Items on map editor unmoveable ?

    This is from Tfs 0.4_dev source... Maybe it is, in previous versions...
Back
Top