• 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

    How to change color of tables | Tibia Layout

    @hamera right click near the position you want to edit and then click on inspect element, you'll be brought to the right place and see which css class you need to edit. This way you can find most of editing positions.
  2. Ralumbi

    Can't Log In Using Local VM. Not Trying to Connect Through Internet. Just Locally.

    Inside your VM you check the IP-Address, this IP-Address you need to forward the ports to in your router. Then in your config.lua you need to put your public IP-Address and not your private one which looks similar to: 192.168.x.x if you did those steps everyone can connect and to make sure other...
  3. Ralumbi

    Can't Log In Using Local VM. Not Trying to Connect Through Internet. Just Locally.

    Inside the VM program you will need to forward the ports as well you can find this under settings > network. Advice is to also use bridged adapter instead of nat so you get a similar IP as you have on your main desktop. This makes it happen that other people can join your server while hosting it...
  4. Ralumbi

    Read and help please

    https://otland.net/threads/8-10-shadow-server-ustrike-data-pack-full.268949/
  5. Ralumbi

    Captcha Error =(

    Please use code tags. https://otland.net/threads/how-to-display-code-properly-in-your-post.168098/
  6. Ralumbi

    Captcha Error =(

    Can you show the full register.php? This doesn't make any sense to find a bug. Just giving the if statements cannot solve an error as you can say: if(findBug === true) { echo "you've a bug"; } but how does findBug gather his information?
  7. Ralumbi

    Can't Log In Using Local VM. Not Trying to Connect Through Internet. Just Locally.

    You should go to your phpmyadmin and change the password for your account to what @Shadow_ told you. So instead of having your password 1234567 change it to 20eabe5d64b0e216796e834f52d61fd0b70332fc
  8. Ralumbi

    Login to server problem

    Are you using a VM? Have you tried to first restart your computer?
  9. Ralumbi

    Read and help please

    https://otland.net/forums/requests.132/
  10. Ralumbi

    [SQL] Message: Subquery returns more than 1 row

    At the end of the query as they describe at w3schools.
  11. Ralumbi

    [SQL] Message: Subquery returns more than 1 row

    @Znote might be able to help you out, he is pro in SQL :)
  12. Ralumbi

    [SQL] Message: Subquery returns more than 1 row

    @Shadow_ I believe you double checking status = 1 at line 14. You do SELECT `frags` FROM `guild_wars` WHERE `status` = 1 and then you say AS frags, at the end of the query you have an extra AND status = 1, you might want to try to do with without the last check for status = 1 because you only...
  13. Ralumbi

    Lua Extra Loot script not dropping second item.

    @noshirtstan This function is calling corpse:addExtraLoot(creature, extra_loot[i] function onDeath(creature, corpse, killer, mostDamage, unjustified, mostDamage_unjustified) if not creature:isMonster() then return true end if corpse and corpse:isContainer() then for i = 1...
  14. Ralumbi

    bad argument #1 to 'find' string expected, got nill

    I didn't say it was the solution. But I know it has been changed. The best would be that @Itutorial would check further on this since he wrote the code and most likely dealt with similar errors. Hoping for the best if he would help you fixing your issue. I sadly do not have enough time to...
  15. Ralumbi

    bad argument #1 to 'find' string expected, got nill

    @SixNine you should start with changing MESSAGES_GREET to MESSAGE_GREET same goes for other ones being written as MESSAGES. These global variables have been changed in time to MESSAGE_XXX instead. So in your case you must change these lines: line 118: local playerGreetMessage =...
  16. Ralumbi

    bad argument #1 to 'find' string expected, got nill

    Can you show us your taskmaster.lua? Will be easier to see what might be wrong.
  17. Ralumbi

    TFS 1.X+ npc accept new coins

    @darkmu inside your data/lib/core you will find player.lua here you will find local type_crystal = ItemType(ITEM_CRYSTAL_COIN) local crystalCoins = math.floor(amount / 10000) if crystalCoins > 0 then amount = amount - (crystalCoins * 10000) while crystalCoins > 0 do...
  18. Ralumbi

    bad argument #1 to 'find' string expected, got nill

    @SixNine could you be more specific? What is the console error you're receiving? Transfering scripts from 1.x to 1.3-4 can give many of such type or errors since a lot of functions have been rewritten. note: don't bump your post this much, won't really help :(
  19. Ralumbi

    Reward script edit

    There is so many database controlled having a small functionality extra database controlled won't receive you extreme lags. Not sure where you base this on. When I develop something which is going to take resources thinking about daily events where people can gain points. Which is the exact same...
  20. Ralumbi

    Best item editor for 7.6?

    Here you go @Malek It is a very bugged program so whatever you do, do it with care <3 Don't try to rush something in there really take your time. Sincerely, Ralumbi
Back
Top