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

    Lua NPC travel by storage not working

    This should work if (msgcontains(msg, "gengia")) then if(vip.hasVip(cid) == true) then npcHandler:say("Do you want to sail to Gengia for free?",cid) Topic[cid] = 4 else npcHandler:say("Sorry, only VIP Players can travel there.",cid)...
  2. Mummrik

    [Italy] [7.7] Realots Testserver (oldschool PvP-E mode; 50% exhaust)

    Seems like the Query Manager crashed, i get the "Internal error, closing connection." message when i try to log in.
  3. Mummrik

    Quick question for mappers

    Im not sure but if you put a actionid would that prevent it from decay to closed pitfall?
  4. Mummrik

    Lua Open trap, preventing overstacks.

    I used to have problem whit the AddItem if you didnt have the tileitem="1" but its always worth a try whitout it. I need to point out that i use 0.3.6, so it might be different on 0.4
  5. Mummrik

    Lua Open trap, preventing overstacks.

    Check the post above. Well you should not put the trap over an item you should put an item over the trap to make it run Edit: If you have teamviewer you can pm me and we can take a look at it live instead
  6. Mummrik

    Lua Open trap, preventing overstacks.

    Thats strange can you test and see if the script its executed at all? Simply put this print("Test") below this line function onAddItem(moveitem, tileitem, position, cid) then just throw any item over an open or closed trap and check the server consol if it printed Test Edit: I cant find the...
  7. Mummrik

    Lua Open trap, preventing overstacks.

    I did test it, and it was impossible to put more traps on the same sqm. Since the one that was on the sqm would close. Not sure what you mean whit overstack then. Edit: I did test it on 0.3.6 but it should work on 0.4 aswell Edit2: If you meant that you can put items over the trap to hide it...
  8. Mummrik

    Lua Open trap, preventing overstacks.

    This should work movements.xml <movevent type="AddItem" tileitem="1" itemid="2579" event="script" value="trap.lua"/> trap.lua script function onAddItem(moveitem, tileitem, position, cid) if moveitem.itemid == 2578 or moveitem.itemid == 2579 then local trap =...
  9. Mummrik

    strange holes

    Open items.xml and then do this to the following ids to make them work like real tibia (note you still need an onStepIn function to take care of damaging the player) <item id="1512" name="strange holes"> <attribute key="decayTo" value="1513"/> <attribute key="duration" value="1"/>...
  10. Mummrik

    NPC FOR BLESS

    This should only bless the players whit the missing blessings and should only take money for the missing blessings aswell local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) local talkState = {} local blesscount =...
  11. Mummrik

    block damage if have x amount of storage

    What if you try this script local storage = 815500 -- make sure stack overflow doesn't happen, don't change this local modifier = 45003 -- storage key for damage reduction function onStatsChange(cid, attacker, type, combat, value) if getPlayerStorageValue(cid, storage) == -1 then...
  12. Mummrik

    block damage if have x amount of storage

    You should change the modifier table to this local modifier = 45003 -- storage key for damage reduction Edit: The first line should be untouched as stated in the comment
  13. Mummrik

    Linux Lost Account

    Did you login to the email on gmail.com once to activate the email? I use this setting for gmail smtp # Emails Config $config['site']['send_emails'] = true; $config['site']['mail_address'] = "####@gmail.com"; $config['site']['smtp_enabled'] = true; $config['site']['smtp_host'] =...
  14. Mummrik

    Long time no see otland

    Always nice to see old members return, welcome back!
  15. Mummrik

    [7.7] RealOTS 7.7 Cipsoft files (virgin)

    I've been scanning the map files to find anything usefull, but i did not find anything special. except AbsTeleportDestination=-2010517994 seems to be some old teleport method cipsoft used (that is assigned to ghostship tp) I did also make a txt file that contains all the text from books and...
  16. Mummrik

    Athena Editor Development Thread

    This look nice, keep the good work up!
  17. Mummrik

    Looking for Simone OTMapEditor

    Simone's mapeditor is outdated but i did google and found this thread SimOne MapEditor 0.581 - 8.6 contains some info in english in the link to tibiaking.com but it supports tibia 8.6 not sure if there is any newer version Mirror download: TinyUpload.com - best file hosting solution, with no...
  18. Mummrik

    Help to open Cipsoft map

    It's impossible to open cipsoft map whit rme. but luckily Mindee did convert the map to .otbm check this thread [7.70] Real Tibia Map + full spawnlist.
  19. Mummrik

    Lua 7.6 doPlayerAddHealth Problem

    This should work. The problem is that when you say heal you set the talkstate to 1 but then you had the talkstate set it back to 0 at the bottom it should be inside the if statement if msgcontains(msg, 'heal') then talk_state = 1 selfSay('Do really need my help?') elseif talk_state == 1...
  20. Mummrik

    Lua Clones Dungeon [Quest]

    Its a good start but need some more edits, it also need a creaturescript, and a globalevent might be good aswell. But as i said im busy whit an other script/mod, well its almost done. When im done whit that ill help you out.
Back
Top