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

    C++ prevent runes and potions from being stackable

    You need to set this in your item editor unfortunately.
  2. Ralumbi

    ZNOTE AAC problem with paygol configuration

    Your issue isn't very clear. Also explaining code should be in the CODE instead of INLINE CODE brackets. Could you explain exactly what your issue is so someone might be able to help you further?
  3. Ralumbi

    Reward script edit

    To make it a "better" system. So you create a new column in the database and each time someone should get points you'll do a Lua db.query to store the points. This way you will have less chance to gain bugs. Of course you can obtain the same via storageValues. Just giving you a "better" idea.
  4. Ralumbi

    Reward script edit

    You would want to create a new database record and for example: if player won an event it will store +5 points into the database. The best way would be creating it the same way banker works. This way you can have them virtual in the database but also extract them as a new type of coins as example.
  5. Ralumbi

    Linux Compiling TFS 0.4.377r19 on ubuntu 20

    It seems you didn't remove all of them. Same error as you posted in first place.
  6. Ralumbi

    RevScripts Script Reset

    If you are willing to learn to script then follow the link Xikini gave you. Spend some hours days, weeks to get it done. You'll feel so satisfied when you reach your goal!
  7. Ralumbi

    critical system tfs 1.3

    The support section is not for requesting scripts. For this you can best ask it here at Xikini. Don't private message him ;)
  8. Ralumbi

    Sorry i have other error :S white skull / kill pk = 3000 hours pz

    If I read this correctly setting in your config.lua pzLocked to the value of 6 would fix it.
  9. Ralumbi

    myacc problem gift

    Insert this command into your SQL: ALTER TABLE z_shop_category ADD hidden int(11) NOT NULL DEFAULT '0'; Most likely will fix your issue.
  10. Ralumbi

    TFS 1.X+ regeneration mp/hp for vip

    Personally I would go for a source edit and doing everything via SQL, it works the same way as getting your vocation id via the database. No performance decrease as it loads only one time each time an account login
  11. Ralumbi

    TFS 1.X+ regeneration mp/hp for vip

    When you say storage is higher than zero, which always, everyone will be VIP.
  12. Ralumbi

    TFS 1.X+ regeneration mp/hp for vip

    Try this :) function onLogin(player) if player:getStorageValue(161398) == 161398 then -- YOUR VIP CONDITION player:addCondition(regenCondition) return true end end
  13. Ralumbi

    TFS 1.X+ Can't get RL 10.98 Map to work

    If you can login to the server there is nothing wrong with the map. Make sure you set your account AND your character to an access value of 3 which is the standard for god. About the /town 1, 2, 3, ................ In RME you can check the towns and each town has a different id. This id is how...
  14. Ralumbi

    TFS 1.X+ regeneration mp/hp for vip

    The StorageValue has to match the VIP storageValue
  15. Ralumbi

    TFS 1.X+ regeneration mp/hp for vip

    Make sure to give the if player:getStorageValue(XXXXX) == YYY then -- YOUR VIP CONDITION an storagevalue which is the same as you give to a vip player :) so XXXXX for example is 123456 and it must be equal to YYY so in this example equal to 123456
  16. Ralumbi

    [Error - mysql_real_query] Message: Duplicate entry '5' for key 'guildwar_kills_unique'

    There seems nothing wrong, all I can see is that the warid must be an unique value. This means that only one warid of '5' in this case may exist. Try cleaning up your guildwar tables and try again :)
  17. Ralumbi

    [Error - mysql_real_query] Message: Duplicate entry '5' for key 'guildwar_kills_unique'

    Could you share the script file where it executes the mySQL query? Somewhere in that file you might have made an mistake why it duplicates entry '5', guildwar_kills_unique table doesn't allow the same entry values. But don't get me wrong, this return error is very bad to Sincerely, Ralumbi
  18. Ralumbi

    Sqlite Error

    This seems like your source is looking for the SQL table 'castle_dono' onLogin. Check your login script and remove the line where you see 'castle_dono'. If you don't know how or what, please post your login.lua here. Sincerely, Ralumbi
  19. Ralumbi

    AAC Show premium days Znote

    Please post the line 278 here.
  20. Ralumbi

    TFS 1.X+ TFS 1.3 Possible to make area pvp enforced?

    I will push you into the right direction. You will have to make source edits for this. In combat.cpp you will find the functions: void Combat::getCombatArea here it checks which tile a creature(player) is at. Such as PZ-zone. Then we have a ReturnValue functionaility: ReturnValue...
Back
Top