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

    Lua Help NPC promote bugged

    I think it's fuck my vocations
  2. L

    Lua Help NPC promote bugged

    You know how to do a creaturescript to: IF have X vocation and dont have premmy set vocation Y X-Y 9-5 10-6 11-7 12-8 14-13
  3. L

    Where is it (global map)?

    BUMP!! where is it?
  4. L

    Lua Help NPC promote bugged

    Why when i relog i lost my promotion?
  5. L

    Lua Help bug BP (+cap)

    TYY
  6. L

    Where is it (global map)?

    Ab? Carlin? X?Y?Z?
  7. L

    Lua Help NPC promote bugged

    I have changed, but when i relog i lost my promotions!!! WHY? ;(
  8. L

    Lua Destroy item on move

    Dont print nothing I think I'm using this function the wrong way looking at the code in source code, you can tell me the right way? //Função add por luanluciano93uint32_tCreatureEvent::executeMoveItem(Player* player,Item* item,uint8_t count,constPosition& fromPos,constPosition& toPos,Item*...
  9. L

    Lua Destroy item on move

    I'm edit the first post (on this topic)
  10. L

    Lua Destroy item on move

    i have the function, run, but dont delete the item!
  11. L

    Lua Help NPC promote bugged

    how?
  12. L

    Lua Help bug BP (+cap)

    How?
  13. L

    Lua Help NPC promote bugged

    vocations.xml is ok too :o <?xml version="1.0" encoding="UTF-8"?> <vocations> <vocation id="0" name="None" description="none" needpremium="0" gaincap="5" gainhp="5" gainmana="5" gainhpticks="2" gainhpamount="2" gainmanaticks="1" gainmanaamount="4" manamultiplier="4.0" attackspeed="2000"...
  14. L

    Lua Help bug BP (+cap)

    It's work ok, but if i relog using this bp, it give me more 1000 cap <!-- sorcerer --> <movevent type="Equip" itemid="10518" slot="backpack" event="script" value="bpscap/magevipbag.lua"> <vocation id="1"/> <vocation id="5" showInDescription="0"/> </movevent> <movevent...
  15. L

    Lua Help NPC promote bugged

    I can buy, he give me, all is ok in game, but if i relog, i lose my promtion Any know fix? <?xml version="1.0" encoding="UTF-8"?> <npc name="The King" script="data/npc/scripts/promote.lua" walkinterval="2000" floorchange="0"> <mana now="800" max="800"/> <health now="200" max="200"/>...
  16. L

    Lua Destroy item on move

    function onMoveItem(cid, item, count, toContainer, fromContainer, fromPos, toPos) if getPlayerVocation(cid) == 0 then doRemoveItem(item.uid, 1) return false end end dont work, dont do nothing i dont use 1.2, i use 0.4 function onMoveItem(cid, item, count, toContainer...
  17. L

    Lua Destroy item on move

    Im tryng use this function to delete item on move! But dont work, when i start the server dont give me erros on console, when i move itens dont give erros on console I think the problem is here: if item.itemid == 2596 then Or here: doRemoveItem(item.uid, 1) SCRIPTS \/...
  18. L

    Lua Problem canWalkthrough DP

    I try put it too have 3 problems 1- GOD cant walk under monsters 2- Under NPCs 3- all can enter in others p depot
  19. L

    Lua Destroy item out of the bag 'n' onmove

    In my sources don't have function throw... I search and found function OnMOve //Função add por luanluciano93uint32_tCreatureEvent::executeMoveItem(Player* player,Item* item,uint8_t count,constPosition& fromPos,constPosition& toPos,Item* toContainer,Item* fromContainer,int16_t...
  20. L

    Lua Destroy item out of the bag 'n' onmove

    Ty bro, but i dont want to block, it i know I want delete parcel, i dont want parcels on rook.. I do know how to delete item without the bag :( doPlayerRemoveItem(cid, 2596, 1) /\ it work only if item is inside bp I try it, but dont work <movevent type="AddItem" tileitem="1" itemid="2596"...
Back
Top