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

    [GESIOR] Invalid argument (Foreach())

    Don't be rude. The error clearly states: Error message: Table 'forgottenserver.z_news_tickers' doesn't exist So your probably just stupid enough to realize that your data table doesn't exist. MySQL doesn't print this error just for fun.
  2. Vanderlay

    Chance to run a raid.

    You can do something like this: if 10 <= math.random(100) then if you want raids to be more randomly executed.
  3. Vanderlay

    TFS 1.0 - 10:41 Addshop

    No, that happen because you didn't have an item in your right hand.
  4. Vanderlay

    TFS 1.0 - 10:41 Addshop

    In your servers config.lua, change classicEquipmentSlots = "no" to classicEquipmentSlots = "yes"
  5. Vanderlay

    Compiling Limit Level/experience in OTS

    Could be many reasons. I don't know what type of server you are using, or database, but there could be an config setting, datatype issue causing levels after X range to not work as intended, same goes for database datatypes which level/experience are stored in.
  6. Vanderlay

    Znote Proplems in Local Host

    Your Znote config for the database settings is wrong. "failed to connect to mysql (1045) access denied for user 'tfs10'@'localhost' (using password yes)" This means that the server cannot connect to your database. 'tfs10'@'localhost' tfs10 means the username and (using password yes) means...
  7. Vanderlay

    Solved please help me with my server website

    SELECT `password` FROM `accounts` WHERE `id` = LIMIT 1; You are trying to do a select on an empty where condition, "id" = 'nothing is here' as you can see above. The code is probably not validating if an account id has been set or selected.
  8. Vanderlay

    TFS 1.0 - 10:41 Addshop

    You didn't change what I said... On line 7, change: local item1 = getPlayerSlotItem(cid, CONST_SLOT_RIGHT) to: local item1 = Player(cid):getSlotItem(CONST_SLOT_RIGHT) On line 19, change: doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Put item in right hand.") to...
  9. Vanderlay

    10.41 Paygol weird problem

    I guess you don't know anything about coding and if thats the case, I can't help you.
  10. Vanderlay

    TFS 1.0 - 10:41 Addshop

    You must give us some information about the server. Such as server distro version and what you are actually trying to do. Using TFS 1.0+, this should be: local item1 = getPlayerSlotItem(cid, CONST_SLOT_RIGHT) changed to local item1 = Player(cid):getSlotItem(CONST_SLOT_RIGHT)
  11. Vanderlay

    10.41 Paygol weird problem

    // check that the request comes from PayGol server if(!in_array($_SERVER['REMOTE_ADDR'], array('109.70.3.48', '109.70.3.146', '109.70.3.210'))) {header("HTTP/1.0 403 Forbidden"); die("Error: Unknown IP"); } This is the line that causes your script to stop because of the wrong IP. Just...
  12. Vanderlay

    Team Delete

    He seems like a good guy and I've spoken to some other people saying he seems trustworthy. Just my 2 cents for now.
  13. Vanderlay

    [Norway] | Emploria | 100 % Custom Map | 10.41 | STARTED NOW!

    Website doesn't even work.
  14. Vanderlay

    Linux server CLI

    I remember there was one windows version(I think its the one Elf released) which included some UI usage for reloading stuff, but as Dominique1 said, they all can be done from in-game using commands such as /reload npcs, /reload config etc.
  15. Vanderlay

    monsters attack one team

    He wants some specific monsters to only be hostile towards party 1 while party 2 is allied with the monsters, making the monsters not able to attack party 2 and party 2 can't kill the monsters.
  16. Vanderlay

    [TFS 1.0] Knight can hold in every Hand a Weapon

    You need to edit the sources a lot for it to work correctly. First you need to change so knights can equip two weapons, then you need to alter the damage and decide if it should increase the damage or actually hit twice(like on my server, a player can have dual wield and they will hit twice...
  17. Vanderlay

    New Item Attributes for my Server

    If its just a hobby for you then you shouldn't try to make new additions to your server if you are not able to do it yourself. Its fine to use the request board from time to time, but to spam it because you can't do anything yourself but yet you want to do so much with your server, and YET not...
  18. Vanderlay

    /watch gm talkaction TFS1.0

    If you mainly want to see how often they casts spells and not what they are actually typing, it can be done in LuA without changing the source. If you want to monitor what he is typing in different channels I believe you have to edit the source. Also, logs only record GM commands if i'm not...
Back
Top