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

Search results

  1. Leesne

    globalevents Have a problem

    You have double posted this and not posted the code.
  2. Leesne

    [GESIOR ACC ] CHARACTER MARKET

    There are not enough checks to ensure what you buying is correct. I'm not going to explain in-full incase others are using it but this code should not be used. Adorius, if you are using this link me your server website (in private message) and i'll show you if i get time.
  3. Leesne

    [GESIOR ACC ] CHARACTER MARKET

    please please please. Do not use this code. I guarantee you will come to regret it, just looking at the code makes me cringe at the exploits..
  4. Leesne

    MyAAC v0.8.21

    It will update eventually, it gets cached in your cache folder, or delete the files from the system\cache\twig folder. When updating and testing turn the dev mode on in the config (from prod to dev).
  5. Leesne

    [MyAAC][Plugin] Gesior Shop System

    I meant the latest version of the plugin as it was renamed a number of versions ago according to the changelog. Guessing you installed it in the older version and the database never got renamed.
  6. Leesne

    [MyAAC][Plugin] Gesior Shop System

    Are you using the latest version?
  7. Leesne

    [MyAAC][Plugin] Gesior Shop System

    https://github.com/slawkens/myaac-gesior-shop-system/blob/v2.2/gesior-shop-system.lua#L268 Is this piece of code executing and updating correctly?
  8. Leesne

    MyAAC v0.8.21

    Menu editor in the admin panel. Layout looks slightly different in the newer version, i just don't have a screenshot to hand.
  9. Leesne

    MyAAC v0.8.21

    You can create a new page in the admin panel and use the inbuilt editor to create the page if its simple. Or create a php page in system/pages and it can be accessed the same way the other pages get accessed ?newpage
  10. Leesne

    AAC Server Rules in MyAAC

    In the newer version it uses a custom page use the admin panel page editor. https://github.com/slawkens/myaac/blob/b68077d969317cc51fc984dadd8230c1d217e75d/system/migrations/30.php
  11. Leesne

    UH for TFS 1.3

    then just do min = 240 + (level etc and max = 240+ (level etc and modify the rest of the calc to not be OP.
  12. Leesne

    UH for TFS 1.3

    I am guessing you need to modify the max as well as the max could be under 200 as well.
  13. Leesne

    MyAAC v0.8.21

    i told you how to fix it, you haven't set database_encryption. The message you posted is the exact same as the previous message.
  14. Leesne

    MyAAC v0.8.21

    You haven't set database_encryption in the config file. https://github.com/slawkens/myaac/blob/master/system/functions.php#L316 Maybe this needs to be modified with: "if(isset($config['database_encryption']))" in a future version. function encrypt($str) { global $config...
  15. Leesne

    [Germany] [10.98] - Evolunia

    Can't comment on the rest but GM commands don't usually return yellow text if they cast successfully, so could be hotkey fails. Most servers GM's can take sides on their own player characters, it was the same on RL tibia, but not allowed to use their GM chars powers.
  16. Leesne

    TFS 1.X+ "You can not logout now!" Problem!

    haha, that is true. I use IntelliJ IDEA when working on server code (and php storm whilst working on web stuff) which allows you to see git changes, search in path, regex search and much more. Its a nice tool tbh, I use notepad ++ when just working on small edits. I think im just so used to...
  17. Leesne

    TFS 1.X+ "You can not logout now!" Problem!

    typing grep "text here" ./-r -c3 or pressing Ctrl+shift+F (in most editors) then just clicking the listed files to open. I know which i would prefer. :P but i'm a fan of Windows (apart from all the tracking and crappy updates they pushing and when it comes to server hosting). :)
  18. Leesne

    TFS 0.X cut/get a part of string lua (item name script)

    I could have wrote the code but I could see you were trying to understand but new to coding, so was trying to guide you to finding your own solution. Glad you got to the end of it. "Give a man a fish and you feed him for a day; teach a man to fish and you feed him for a lifetime. "
  19. Leesne

    TFS 1.X+ "You can not logout now!" Problem!

    I suggest you download all the files to your local PC and search that way. You shouldn't really make changes to a live server and always use a local test server to test any changes you make.
  20. Leesne

    TFS 0.X cut/get a part of string lua (item name script)

    No, what you are doing is getting the item ID, this is the same across all items in game. getPlayerSlotItem returns the actual ITEM for that specific item which is where the name will be. Reread my last post, you are still using local item = getPlayerSlotItem(cid, CONST_SLOT_AMMO).itemid...
Back
Top