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

  1. Memerto

    Updated Auscent tibia 11 spr extractor

    Check the attachment again mate, I'm pretty sure I uploaded a compiled version.
  2. Memerto

    C++ Colourised loot values

    Hi mates! Cipsof's Tibia winter update will implement a new system to clasify the loot. It is supossed to have several values and works as follows: I guess a lot of additions to server sources (and OTClient if it's the case) are needed to make this possible in Open Tibia, but I think it's an...
  3. Memerto

    Player Loot Rate

    Maybe that script can bring some light to this topic or make your life easier. It was tested on 0.3.6, but there is way less difference between 0.4 and 0.3.6 than between 0.4 and 1.X. [MOD] Loot Ring
  4. Memerto

    Okay so I'm new, where to start, tips and tricks?

    I'd suggest you to start studying the different parts of a server when you just open a data pack. I mean: actions, creature events, global events, movements, talkations, items...etc. It will grant you a very good global view if you know what you can do with each one. Keep in mind that you will...
  5. Memerto

    NPC [TFS 1.2] Spell trader (trade window)

    Tested the "Find person" spell (exiva). Works fine.
  6. Memerto

    Invalid account name.

    Try making more characters and see if the problem persists
  7. Memerto

    Invalid account name.

    I'm glad you just fixed it. Test your acc maker to check if the problem is there and post the results please.
  8. Memerto

    Lua doSendDistanceShoot

    Awesome. I'll try to fix the code you sent me in a PM when I get some free time.
  9. Memerto

    Lua How to put a column with townid in who is online

    Oh, i forgot to close that line. Put ; at the end of the line that starts with $towns.
  10. Memerto

    Lua doSendDistanceShoot

    So it works fine?
  11. Memerto

    Lua doSendDistanceShoot

    Haven't scripted anything on LUA for years, but try this: function onSay(cid, words, param) pps = getPlayerPosition(cid) if getPlayerItemCount(cid, 7910) >= 1 then doPlayerRemoveItem(cid, 7910, 1) doPlayerAddItem(cid, 7890, 1) doPlayerSendTextMessage(cid, 25, "You...
  12. Memerto

    Updated Auscent tibia 11 spr extractor

    You're welcome!
  13. Memerto

    Invalid account name.

    Here's your screenshot, where I highlighted two interesting things: The first red rectangle (number 1 in red) is where the account's name should be, but it's empty. That's why you can't login. You can edit this if you click in the second red rectangle (number 2 in red). You have to put the...
  14. Memerto

    Lua How to put a column with townid in who is online

    Make a back up of the code and replace it all with this: <?php if(!defined('INITIALIZED')) exit; if(count($config['site']['worlds']) > 1) { foreach($config['site']['worlds'] as $idd => $world_n) { if($idd == (int) $_REQUEST['world']) { $world_id = $idd...
Back
Top