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

    Flying mount system TFS 1.2

    Bump, can someone help edit to it create 3x3 tile around instead 1 tile each step?
  2. Lucck

    Flying mount system TFS 1.2

    Im also trying that, the script creates only one tile and when you have higher speed you walk stucking, stoping: (changed the tile id, to see how its being drawed) 2018-12-05_08-18-32.gif
  3. Lucck

    Npc walk path

    @Printer any idea? How to set a walkpath to an npc?
  4. Lucck

    Npc walk path

    <?xml version="1.0" encoding="UTF-8"?> <npc name="Guard" script="guard.lua" walkinterval="0" floorchange="0"> <health now="100" max="100" /> <look type="139" head="20" body="39" legs="45" feet="7" addons="0" /> </npc> local keywordHandler = KeywordHandler:new() local npcHandler =...
  5. Lucck

    TFS 1.X+ Debug effect talkaction

    function onSay(cid, words, param) local player = Player(cid) if not player:getGroup():getAccess() then return true end if player:getAccountType() < ACCOUNT_TYPE_GOD then return false end local params = param:split(" ") if params[3] == nil then...
  6. Lucck

    OTClient Change skull position through lua

    This is a mod to change name and life bar position according to direction you're looking: (used weird positions just to understand whats changing) mod: I would like ask if someone could help edit the mod to also can change position of skull or others icons: Actually the icons already...
  7. Lucck

    TFS 1.X+ /reload items

    items.cpp bool Items::reload() { clear(); loadFromOtb("data/items/items.otb"); if (!loadFromXml()) { return false; } g_moveEvents->reload(); g_weapons->reload(); g_weapons->loadDefaults(); return true; } Maybe it could be possible ?
  8. Lucck

    TFS 1.X+ /reload items

    Reload items talkaction dont reload items.otb? any way to reload it instead reopen server?
  9. Lucck

    OTClient onBottom outfit

    Nothing to you, as you dont know to what i'll use it.
  10. Lucck

    OTClient onBottom outfit

    isOnBottom flag, could be added to outfit ? Trying make a flag or condition to be added in certain look types to be onBottom like the items when have that flag activated
Back
Top