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

    SQL guild

    Seems like the primary key of the table is missing the auto_increment attribute, or has a bad primary seed. Which server are you using, and what is the structure of your guilds table?
  2. Znote

    New AAC.. But not made in PHP

    That is really cool! :D I made my bachelor thesis in Python 3 about 7 years ago (Znote AAC is 9 years old, omg...), wrote a backend json API with Flask. If I didn't already have Znote AAC today (or then), I would probably have built it using Python, and later/now in Golang. Not because of...
  3. Znote

    TFS 1.X+ no -ip issue please help me

    Hmm... I do remember using a domain instead of IP in config.lua before, and had it working. Years ago. I dont remember which distro it was though. But yeah, the server probably does a resolve request on the domain to obtain the IP address to use. @darknelson could you link us to one of those...
  4. Znote

    Summon tp to pz

    You forgot to loop through your summons list to grab the summon creature for (Creature* summon : summons) { // apply code here, etc: summon->getName() }
  5. Znote

    TFS 1.X+ no -ip issue please help me

    Dont add the domain name itself in config.lua, instead add the ip address. Ping the domain to see if the ip is correct. Make sure the ports are open through router/firewall. (for loginport and gameport). If behind a router/local network, make sure ports are routed to the correct host through...
  6. Znote

    Summon tp to pz

    if (summon->getName() == 'Thundergiant') { // Apply code for Thundergiant } // Might be more efficient to do: if (summon->getRace() == 219) { // Apply code for raceid 219 }
  7. Znote

    AAC ZnoteACC Boost Creatures

    You change raceid here: https://github.com/Znote/ZnoteAAC/blob/91816bbe2bcf890f48762caf851abd973075f7c7/login.php#L123 Does your server store raceid somewhere in the database? I can probably help out with the code change to make this dynamic.
  8. Znote

    Battle window not working Otclient

    Which otclient? Any errors in console? (CTRL + T)
  9. Znote

    How does the npc see ml?

    Ohh, I have no idea how that works. That looks like a file from the Nostalrius server, its not standard TFS npc format, so not many people are familiar with it and can help you. Maybe @Ezzz can help you, he is the main dev of this server.
  10. Znote

    The state of this community

    If I would host a retro server, I would definitely be interested in a downported version of TFS, that has cool stuff like Revscriptsys and other engine features. No matter which protocol, I'm sure stuff like proper guildhall support, Asynchronous HTTP API with lua bindings, Parse packet in Lua...
  11. Znote

    How does the npc see ml?

    I decided to blog my thought process during this support challenge. :) getPlayerInstantSpellCount returns the amount of spells a player has, (etc 7 spells) which you add to the variable count. It then loops from 0 to that count-1, so etc 0,1,2,3,4,5 and finally 6. This is what will be stored in...
  12. Znote

    The state of this community

    This community is thriving, alot of support is being given in support board, lots of servers are launched on a weekly basis, lots of contribution is being made on github. There are several people (me included) who code and contribute and help for free. (I also spend some money for this...
  13. Znote

    RevScripts Addon Bonus

    Do you have an old reference script we can look at?
  14. Znote

    AAC Site and server on different computers

    To make sure configuration is correct, add this revscriptsys file: znote_login.lua: https://github.com/Znote/ZnoteAAC/blob/master/Lua/TFS_10/revscriptsys/znote_login.lua And restart the server, it should override web configurations so the connection to the server is correct. You should get a...
  15. Znote

    AAC Znote Pagseguro API - Problems

    Rewrote both queries: <?php /* Instalação - Configurando Pagseguro (Acessar https://pagseguro.uol.com.br/preferencias/integracoes.jhtml) - Notificação de Transação: - http://you-site/pagseguro_ipn.php - Página de...
  16. Znote

    AAC [Znote AAC] Deathlist

    OTX2 schema structure does not seem to perfectly match the TFS_03 or TFS_10 compatibility configuration on Znote AAC, so we might need to rewrite this part to accomodate assist kills. Looking at the OTX2 schema, there are multiple tables involved: -- Stores death rows for a player_id, each...
  17. Znote

    Help with the server activator...

    Perhaps give our OTS Guide a go, its for a 10.98 server. But if you get stuck, you can let us know how far you got in the guide and we might be able to help you. https://docs.otland.net/ots-guide/ Once you have that up and running, you can shut it down and give 7.4 a try and see if you can...
  18. Znote

    Lua help with my script please

    I think you can catch the error, it might be other reasons why a file cant be read. (etc permission issues on linux). local file, err = io.open("mounts.txt", "r") if file then -- do stuff, then close the file. io.close(file) else print("Error opening file: " .. err) end
  19. Znote

    (SOLVED) RevScript Spells problem

    Set a low group cooldown. This sample: 4 seconds spell cooldown, but only 1 second group cooldown. spell:cooldown(4 * 1000) spell:groupCooldown(1 * 1000) So you cannot spam the same spell, but you can quickly cast another spell in the same spell group.
Back
Top