• 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

    Remove Skill, Level, and Magic level cap

    In agreement with ^
  2. Leesne

    Mana Rune with no Charges

    ~ignore this post i'm tired~
  3. Leesne

    MyAAC v0.8.21

    Did you run the installer? The table gets altered when running it if they don't exist. see the file install\tools\5-database.php
  4. Leesne

    MyAAC v0.8.21

    https://github.com/slawkens/myaac/blob/master/system/status.php#L93 https://github.com/slawkens/myaac/blob/master/system/libs/pot/OTS_ServerInfo.php https://github.com/slawkens/myaac/blob/master/system/libs/pot/OTS_ServerStatus.php
  5. Leesne

    AAC $user_data error after transferring to Xampp

    Without seeing your code, I wouldn't know. But there should be an SQL query relating to highscores and it appears its not requesting lookbody etc. You should share the code for the sections its moaning about and any functions related. If you don't want to publically share. You can PM me...
  6. Leesne

    AAC $user_data error after transferring to Xampp

    Its prob because the user hasn't set a name. You could just add Welcome, <?php echo (isset($user_data['name1']) ? $user_data['name'] : 'user') ?> Welcome ~name~ or Welcome User, depending on if it exists or not in the userdata.
  7. Leesne

    AAC $user_data error after transferring to Xampp

    Either on that page or in a function it will have an SQL query to get the player data. See if its pulling the players name.
  8. Leesne

    TFS 1.X+ Tfs 1.x get player Name by Guid?!?

    print(Player(players_guid[1]):getName()) 04:29 Lee: > test=Player(player:getGuid()); print(test:getName()) 04:29 Lee But as mentioned above. if they are offline you won't get anything.
  9. Leesne

    MyAAC v0.8.21

    https://github.com/slawkens/myaac/blob/master/system/libs/validator.php#L142
  10. Leesne

    MyAAC v0.8.21

    look at my image, the white box is the url. The second code box i posted shows the code.
  11. Leesne

    MyAAC v0.8.21

    I just tested this. https://github.com/slawkens/myaac/blob/master/system/pages/highscores.php#L53 https://github.com/slawkens/myaac/blob/master/system/pages/highscores.php#L318 https://github.com/slawkens/myaac/blob/master/system/functions.php#L619 I modified these three files Ensure the array...
  12. Leesne

    MyAAC v0.8.21

    Hmm, I swear i posted two links in my post, how strange. Need to edit the names here as well. https://github.com/slawkens/myaac/blob/master/system/functions.php#L619 Thats all I remember needing to change when i did a skill change for a layout.
  13. Leesne

    MyAAC v0.8.21

    just match up the skill numbers in game and rename in the $list switch. https://github.com/slawkens/myaac/blob/master/system/pages/highscores.php#L53
  14. Leesne

    AAC Znote ACC not showing owned outfits.

    Isn't there a creaturescript that you need to setup on your server for this? If i remember its in one of the folders. @edit https://github.com/Znote/ZnoteAAC/tree/master/LUA/TFS_10/creaturescript%20sync%20outfits
  15. Leesne

    TFS 1.3 Minimum level

    how doesn't it work? What error do you get. If the player is level 13 or under it won't lose any experience. return (self:getLevel() <= 50 and 0 or exp) just tested this and it stops level 50s losing experience.
  16. Leesne

    TFS 1.3 Minimum level

    sorry. self not player.
  17. Leesne

    TFS 1.3 Minimum level

    in player events. on experience loss if level <=13 then return 0. function Player:onLoseExperience(exp) if self:getLevel() <= 13 then return 0 else return exp end end
  18. Leesne

    [GESIOR ACC ] CHARACTER MARKET

    You are welcome to post the code.
  19. Leesne

    gesior acc themeboxes top level online color green

    it would depend on your database, you either need to compare to the player_online table or the online field in "players" table.
  20. Leesne

    [URGENT] My website deletes all news

    I know this community is full of people with great skills but I don't believe mind reading is one of them. You need to post code.
Back
Top