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

    Compiling tfs 1.2 can't compile linux

    Maybe it'd be better to make the map work for latest TFS version? 😉
  2. Magich

    [WIP] Lua API

    Hello there!! I'm working together with @Evil Hero on something new and thought we could share a sneak peek with the community. @Znote has also contributed to this, so I decided to use Znote AAC for the early development. If everything goes well, it should be usable in other AACs as well in the...
  3. Magich

    AAC Znote highscore multiworld

    You could just remove the array of the test server after this line: $worlds = $config['worlds']; by using: unset($worlds[x]); where x is the position of the test server in worlds array (0 would be first element in that array, 1 the second, ...) ;)
  4. Magich

    Linux Help with using SSH on Linux Ubuntu

    You just need to know the ip address of your Debian and credentials: ssh username@ip I guess your problem is that you are trying to log in as root and the username in the picture is greedot ;) By the way, I'd recommend removing mobaxterm picture for security reasons :o
  5. Magich

    Lua attempt to call global 'doCreateTeleport' (a nil value)

    Same error or different one? 😯 EDIT: By the way, addEvent is wrong, should be something like: addEvent(deleteTeleport, 60 * 60 * 1000, teleportCreatePosition)
  6. Magich

    AAC Znote users.php help please

    You are welcome :D
  7. Magich

    AAC Znote users.php help please

    This should work: // Create Search house box ?> <form action="" method="get" class="houselist"> <table style="width: 100%;/*border:3px double #fff;*/box-shadow:1px 1px 10px #000;" cellpadding="10" cellspacing="1"> <tr class="yellow"> <th>World</th>...
  8. Magich

    AAC Znote users.php help please

    I think the <tr> tag after <th>Sort</th> shouldn't be there
  9. Magich

    AAC Znote users.php help please

    @Vantoria I would use something like this: $configworlds = $config['worlds']; $getworldname = $configworlds[1]; // first world by default $worldid = 1; // first world by default if(isset($_GET['world'])){ $getworldname = $_GET['world']; if (getworldname == $configworlds[2]) {...
  10. Magich

    AAC Znote users.php help please

    You would need to pass the worl id as a parameter to user_count_online function (line 16 of online.php). I don't know if you have that id stored in some variable
  11. Magich

    [Suggestion] Comments in source files

    Hello @Fox Rother, In my opinion, I'd say you are right: members interested in contributing to TFS may find it difficult to start off doing so because of the scope of this project. That's one of the reasons I decided to become a content editor, to share my knowledge (and learn in the process). I...
  12. Magich

    HELP! Issue with Blessing NPC.

    No problem! :) The issue was they modified the sources so that the function addBlessing needs an extra param that specifies the amount of blessings you get ;)
  13. Magich

    HELP! Issue with Blessing NPC.

    Found the problem ;) local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) local talkState = {} function onCreatureAppear(cid) npcHandler:onCreatureAppear(cid) end function...
  14. Magich

    HELP! Issue with Blessing NPC.

    What server are you using? Have you tried if the default blessing NPC (Alice) works?
  15. Magich

    HELP! Issue with Blessing NPC.

    I just changed some lines, probably the conflicting ones: local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) local talkState = {} function onCreatureAppear(cid) npcHandler:onCreatureAppear(cid)...
  16. Magich

    Follow.

    I don't think this is the problem, but maybe there's some interval of time between each onThink :eek:
  17. Magich

    Follow.

    I'm not sure, but maybe the problem is in this line: if target ==(nullptr) then I guess it should be nil instead of (nullptr)
  18. Magich

    36th's pit...

    Awesome work :D Keep it up!!
  19. Magich

    Scripter TNT, custom RPG project (huge detailed map) - Looking for Group (scripter and a capable designer)

    This project seems quite awesome, although maybe it's too big. However I can help you with the scripting in my free time if you want. Good luck!
Back
Top