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

    Regarding website, port and server config

    No, the server only communicates on ports 7171 and 7172 unless you have set a different login- or game port. You should be good to go. :)
  2. forgee

    Castro AAC

    Finished the news articles admin page today. All done with Lua of course.
  3. forgee

    Castro AAC

    Rudimentary online list
  4. forgee

    Lua Kill player get under your head experience gained

    Replace "exp" with the actual amount. local exp = 100 player:sendTextMessage(MESSAGE_EXPERIENCE, string.format("You gained %s experience.", exp), player:getPosition(), exp, TEXTCOLOR_YELLOW) The text part is shown in the Server Log and a yellow "100" at your position. Please always provide your...
  5. forgee

    Castro AAC

    I have been struggling with the Go compiler, I just couldn't get it to rebuild from the updated source. Long story short, since I'm on Linux, (github.com/)Raggaer != raggaer. Because I used 'go get' on a link with a capital in it I ended up with duplicate directories and the imports were taken...
  6. forgee

    Castro AAC

    This looks very promising! I have been checking in on your progress for a while and decided to give it a go (no pun intended). I was going to ask what tables you add to the database but I just saw that you already pushed an update to GitHub that takes care of that. Off to rebuild and reinstall...
  7. forgee

    Our letter of resignation

    I'm so confused right now. Anyway, best wishes for the future!
  8. forgee

    Our letter of resignation

    You will be missed. I wish you the best moving forward!
  9. forgee

    Unable to load config.lua

    This may be a stupid question, but you did save the file after making the changes in config.lua, right?
  10. forgee

    Solved TFS 1.1 function vocation list

    In this case I would use isInArray(table, value). isInArray({2, 4, 6, 8}, player:getVocation():getId()) local config = { VOC = {3, 5, 7} } if not isInArray(config.VOC, spectator:getVocation():getId()) then
  11. forgee

    [ZNOTE] Help Show Marriage on character proffile

    Here are the key parts, all you have to do is piece it together. $married_to = mysql_select_single("SELECT `marriage_system`.`partner`, `players`.`name` FROM `marriage_system` JOIN `players` ON `players`.`id` = `marriage_system`.`partner` AND `marriage_system`.`player_id` = $user_id"); if...
  12. forgee

    Windows Mods where?

    TFS 1.2 does not have a mods directory, mods are for 0.4 and perhaps 0.3, I'm not sure.
  13. forgee

    Knighters god's sprites

    The dagger looks a bit chubby, I would try to make it a little slimmer. That said, I could not do half as well myself. Overall I like them, nicely done.
  14. forgee

    CreatureEvent [TFS 1.x] Award premium points on level advance

    1. I thought the server would have write access in the data directory. You can create the file yourself and set read/write permissions for the user account the server is running under. 2. I would say "You are among the first 2", without "of", but you can of course edit the message to your...
  15. forgee

    CreatureEvent [TFS 1.x] Award premium points on level advance

    Here is a quick edit, I didn't test it so let me know if it works. It will create a file called points_reward.save in "data/creaturescripts" (next to creaturescripts.xml), if you need to reset the counter just delete this file. --[[ Award premium points for reaching certain levels Only...
  16. forgee

    Desktop Post your desktop!

    This is my laptop.
  17. forgee

    OTLand forum is technically amazing.

    It's done with JavaScript, probably saves in a cookie but I'm not sure. If you look at the bottom of the message box you will see "Draft saved" or something along those lines every few minutes or so.
  18. forgee

    Action [TFS 1.1] Fishing monsters

    Replace this line if config.enabled and math.random(100) <= config.chance then With this (remember to enter your actionid) if config.enabled and Item(itemEx.uid):getActionId() == YOUR_ACTIONID and math.random(100) <= config.chance then To add a broadcast when a boss is caught you could replace...
  19. forgee

    Action [TFS 1.1] Fishing monsters

    I updated the script since that post, it is now as StreamSide said above. if config.enabled and math.random(100) <= config.chance then If you need any more help, please provide a detailed description of how you want it to work.
  20. forgee

    Looking for good website tfs 1.2

    Here you go, free of charge. https://github.com/Znote/ZnoteAAC
Back
Top