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

    Lua Help me to this ground id's

    Anybody know RME could help me?
  2. M

    Lua Need use with Shovel/Pick not only use!

    I tried to put in my shovel.lua / pick.lua and try to use and nothing happen... shovel.lua function onUse(cid, item, fromPosition, itemEx, toPosition) local storage if item.uid == 7662 then storage = 51006 queststatus = getPlayerStorageValue(cid,storage) if queststatus ==...
  3. M

    Lua Need use with Shovel/Pick not only use!

    I have this scripts working, but i need conditional change to: OnUse with shovel function onUse(cid, item, frompos, item2, topos) local storage = 51006 if item.uid == 7662 then queststatus = getPlayerStorageValue(cid,storage) if queststatus == -1 then...
  4. M

    Lua How to show bounty hunt list in NPC?

    I want show list from this system: https://otland.net/threads/znoteaac-bounty-hunter-system.243753/ When players say "list" to npc doShowTextDialog(cid, 2175, table.concat(wantedlist)) Somebody could help me? Script local keywordHandler = KeywordHandler:new() local npcHandler =...
  5. M

    Lua Help me to this ground id's

    I need a ground shovel like it: 05:30 You see a loose stone pile. ItemID: [468]. To put in tiles like: 05:31 You see grass. ItemID: [106]. Whats id i need?
  6. M

    Compiling Why sometimes server freeze after i added it

    But i really want put skill penalty on die 5x (without change exp penalty)
  7. M

    Compiling Why sometimes server freeze after i added it

    I trough it was simple... Because i just want add more skills penalty with no change exp penalty... Now im scare to make some errors Did you know whats the right way to make it?
  8. M

    Compiling Why sometimes server freeze after i added it

    Why sometimes all freezes, and sometimes no freeze?
  9. M

    Compiling Why sometimes server freeze after i added it

    Why sometimes when a guy die in my server freeze after i added it on my sources to increase skills losses ondeath? I'm using 0.4 sources I just added a * 5 in player.cpp lostMana = (uint64_t)std::ceil(sumMana * ((double)(percent * 5 * lossPercent[LOSS_MANA]) / 100.)); lostSkillTries...
  10. M

    Lua Get position item used actionid

    Like you said, the problem was in my movemments, i just remove that and now all work... Ty you so much!
  11. M

    Lua Get position item used actionid

    --local storage = 55565 function onUse(cid, item, frompos, item2, toPosition) if item.itemid == 1224 or item.itemid == 1226 then return false end --if(getPlayerStorageValue(cid, storage)) ~= -1 then doTeleportThing(cid, toPosition) doTransformItem(item.uid, item.itemid + 1) --else --...
  12. M

    Lua Get position item used actionid

    because when i use a door ItemID: [1225] with this action to open --local storage = 55565 function onUse(cid, item, frompos, item2, toPosition) --if(getPlayerStorageValue(cid, storage)) ~= -1 then print(item.uid) doTeleportThing(cid, toPosition) local newdoor = item.uid + 1...
  13. M

    Lua Get position item used actionid

    So i need put one by one doors and scripts? I have about 100 postman doors
Back
Top