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

Recent content by Nickolas Deluca

  1. Nickolas Deluca

    Change tibia's macOS client IP to work with 12.86 OTs

    I bought a macbook recently and I was wondering if we can change the IP of the global client to make it work with a 12.86 OTS. Would be neat to play while I'm traveling.
  2. Nickolas Deluca

    Lua Set a different greeting message if player level is higher than X.

    Already solved my problem, someone on discord helped me out. Here is the code should someone need it: local function greetCallback(cid) local player = Player(cid) if player:getLevel() >= 8 then npcHandler:setMessage(MESSAGE_GREET, "Welcome, young adventurer. Tell me if you need...
  3. Nickolas Deluca

    Lua Set a different greeting message if player level is higher than X.

    As the title says, I want to set a different greeting message to an NPC depending on what level he/she is. I'm finishing the dialogs of the npc Oressa and if the player level is lower than 8 she says: Welcome to the temple of Dawnport, child. If you need healing, I can help you. Ask me about a...
  4. Nickolas Deluca

    Linux Alternative to while true; do tfs; done

    This is what I cooked up: My Systemd service: [Unit] Description=My Service After=mysqld.service StartLimitIntervalSec=0 [Service] Type=simple Restart=always RestartSec=5 User=UserToRunTheProcess #important, don't use root, dunno if your distro complains if running root but mine does...
  5. Nickolas Deluca

    Linux Alternative to while true; do tfs; done

    I already use screen... that only solves the issue of logging out of the connection, but I still need to while true, I forgot to mention that I need to restart my server everyday when the server saves.
  6. Nickolas Deluca

    Linux Alternative to while true; do tfs; done

    Does anyone have an alternative to running tfs on ubuntu that isn't a while true loop? I was thinking about a service maybe using systemd but I couldn't figure out how to make it work, I start the service and it doesn't start. Simple as that. Anyways, If anyone has an alternative to while true...
  7. Nickolas Deluca

    [MyAAC][Plugin] Most powerful guilds (TFS 0.3/4 and 1.0)

    Does it work with TFS 1.3? I know it says TFS 0.3, 0.4 and 1.0 in the title, but doesn't hurt to ask right.
  8. Nickolas Deluca

    [MyAAC][Plugin] Gesior Shop System

    Hey @slawkens, is there a way to establish fixed prices when using pagseguro as my payment handler? I'd like to have fixed prices to give discounts for packs of tibia coins. Example: 250 TBC will cost 10,00 500 TBC will cost 15,00 1000 TBC will cost 20,00 Even tho each BRL should give the...
  9. Nickolas Deluca

    TFS 1.X+ How to get the amount of an item inside a chest in a lua function

    Awesome, EXACTLY what I needed, thank you so much! Ok, that's what I was thinking, thank you for clarifying.
  10. Nickolas Deluca

    TFS 1.X+ How to get the amount of an item inside a chest in a lua function

    May I ask, how did you find this method? Also, if it's not much to ask, what's the difference between using . and : while working with objects, I have an idea of how they work, but I just don't know why they work like that. lol
  11. Nickolas Deluca

    TFS 1.X+ How to get the amount of an item inside a chest in a lua function

    Sorry if this is dumb, I'm still learning lua and how to make lua functions for my TFS 1.3 distro. I decided to ditch the default reward system for TFS 1.3 and make my own, I want to give crystal coins as a reward and I want to give 10 CCs to the player. Now, I already figured out how to get...
  12. Nickolas Deluca

    Tutorial on how to create new weapons, armors and shields.

    Can someone provide a tutorial on how to create new weapons, armors and shields? I'd like to be able to make new rods and stuff. I don't necessarily need to create new sprites and stuff but a tutorial on that would also be appreciated. I already tried some methods and gave a shot on using the...
  13. Nickolas Deluca

    [TFS 1.3] !bless and !aol withdrawing money from your bank account if needed.

    Nice, already edited into the post and added to my own function, thanks!
  14. Nickolas Deluca

    [TFS 1.3] !bless and !aol withdrawing money from your bank account if needed.

    Hey guys, I'd like to share something I created. I learned from all the scripts that you guys shared in here. If you have any suggestions for improvements, they'll be most welcome. Lets get to it, both !aol and !bless are pretty simple but they try to withdraw money from the player's bank...
  15. Nickolas Deluca

    Why is gainCap multiplied by 100 on TFS source files?

    Hmmmmm, that makes sense, I guess we should change some of our own code then. Our characters were being created with their caps as high as 7000 cap, level 8. lmao. I'll check our code post back what we find out.
Back
Top