• 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!

Recent content by Rote Faust

  1. R

    Solved help with OTServ 9.10 r.6105 - players only walk through eachother in PZ

    Solved Thanks for trying to help, but I fixed it myself. in protocolgame.cpp i changed void ProtocolGame::sendCreatureWalkthrough(const Creature* creature, bool walkthrough) { if(canSee(creature)){ NetworkMessage_ptr msg = getOutputBuffer(); if(msg){ TRACK_MESSAGE(msg)...
  2. R

    Lua Errors on doPlayerBuyContainer

    attempt to call global 'doPlayerBuyContainer' (a nil value) means that there is no function called "doPlayerBuyContainer" in your distro. maybe you are using one too old for jiddo's npc system 3? The .exe was compiled without the "doPlayerBuyContainer" function in the sources. That is all i can...
  3. R

    Solved help with OTServ 9.10 r.6105 - players only walk through eachother in PZ

    bump... - - - Updated - - - I have searched google for "walk through players otland" and everything that came up, either didn't work, or the c++ code wasn't compatible with OTserv 0.6.3 r6105 (compile errors, missing functions like "isGhost" and such)
  4. R

    Help[Urgent Debug client]

    If you made new items in a .dat editor, you either didn't put the updated tibia.dat and tibia.spr in the client folder, or you have too many new items. This can also happen if you are using an items.otb from a server meant for a newer client. One way or another, the client can't load the item...
  5. R

    Changing Tibia Client Version

    i'm pretty sure to change version, what you have to do is edit the first two occurrences of your version string in a hex editor. you have to change them both or it won't work. to clarify, if the version you want to change is 9.20, and you want to make it 7.68 (the lowest possible for newer...
  6. R

    how do you use deprecated item id's?

    i am trying to figure out how to use deprecated items (id 102, 105, and so on.) i have otitemeditor 0.5.2 for 8.6 with 9.1 plugin. i have seen other people talking about reusing the item id's in "deprecated" and i wan't to know how to do it. my server is 9.1 and i have max items allowed...
  7. R

    Solved Monster fishing [HELP]

    @tetra20 when i copied your script it still summoned monster without taking worm. it works perfectly in my server the way i made the script. notice where it says if chance >= 1 and chance <= numero and (not config.useWorms or doPlayerRemoveItem(cid, 3976, 1)) then create = monsters[chance][1]...
  8. R

    Solved Monster fishing [HELP]

    if the code you have worked except for not taking worm, then what i have should work. it won't take a worm unless you put the remove worm line in the "if" that calls "dosummoncreature" just copy the code below and see if it works ---UPDATE--- sorry i forgot a part, if chance >= 1 and...
  9. R

    Cannot configure an event in CreatureScripts

    as far as I can tell, that is happening because there is no creature event called "joinchannel" or "receivemail" in your server. it would have to be added in your sources (c++) and I don't know how to make those functions. As far as I know, the only creature event types are: "login" "logout"...
  10. R

    Solved Please help me with npc LUA script to sell mounts.

    Ok, I will, and thank you for you time and help. ^_^
  11. R

    Solved Please help me with npc LUA script to sell mounts.

    thanks tetra20, after some lunch and a fresh look, I fixed it myself. btw, I don't know about your server, but item id"2152" in my server is the platinum coin, so the function where you say "getPlayerItemCount(cid, 2152) >= 5000" that means i will need 5000 or more of the item "platinum coin"...
  12. R

    Solved Please help me with npc LUA script to sell mounts.

    well, that didn't work. It is still doing the same thing, only now I have to have 5000 crystal coins (equal to 50,000,000 gold) in my backpack thanks for trying though. also I forgot an "end" , I will edit first post to what I have now. ------UPDATE------ wow I feel dumb... I fixed it...
  13. R

    Solved Please help me with npc LUA script to sell mounts.

    okay, I realize all I do on here is ask for help, but I really do try to figure things out on my own first. That being said, I need some help making a script to sell mounts. I want to be able to say the mount name, and if i don't have enough money, the npc says "you don't have enough money!"...
  14. R

    Solved help with OTServ 9.10 r.6105 - players only walk through eachother in PZ

    thanks for the reply, but on no-pvp server you are supposed to be able to walk through other players. That's my fault for not specifying my server type. I used to play tibia on Honera, and I walked through people all the time.
Back
Top