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

    FIFA 15 / FUT

    It sucks that you can't do casual online matches like FIFA 14, ultimate team ain't nothin special either.
  2. I

    Lua Missed <create_date> ...?!

    Uhm yes quite possibly, the question is in what format it should be. It'd be wise to locate where the date is inserted, so we know How it is inserted. Do you use a mod for this feature or is it a core function in your server. Again, what server do you use? Ignazio
  3. I

    Lua Missed <create_date> ...?!

    You could check in the database if the time stamp is wrong in there, which means it's parsed wrong in the server, or more logically that it is inserted wrong. What server do you use? Ignazio
  4. I

    Call stack overflow

    ... It's hard to identify the problem without seeing what caused it ...
  5. I

    Call stack overflow

    Could you post the script of that block gem? Ignazio
  6. I

    Call stack overflow

    What did you do when this error occured, what spell did you use? Ignazio
  7. I

    MYSQL not connecting?

    It's better if you open the configuration file in notepad++, wordpad, sublime or something alike so it's more readable, then you can pastebin it or simply put it in CODE-tags. Ignazio
  8. I

    Solved [TFS 1.0] killingInTheNameOfQuest

    I wonder if it is even read, the file. Is the file really in that folder? You should consider not have whitespaces in folder names. In any case, try to replace the script with this and reload creaturescripts, just for checking. dofile('data/lib/killingInTheNameOfQuest.lua') function...
  9. I

    Solved [TFS 1.0] killingInTheNameOfQuest

    Then the problem may lie in your xml file. How does your creaturescripts.xml look? Ignazio
  10. I

    Solved [TFS 1.0] killingInTheNameOfQuest

    Good, now we've established that the kills aren't accounted for. Let's make some prints to identify the error. dofile('data/lib/killingInTheNameOfQuest.lua') function onKill(cid, target, lastHit) local started = getPlayerStartedTasks(cid) print("A: " .. #started) if isPlayer(target) or...
  11. I

    Solved [TFS 1.0] killingInTheNameOfQuest

    Are you sure that the storage value was changed when killing monsters? You can check this in the database (phpmyadmin) for your player id, and the storage id 65000 + (task id) Ignazio
  12. I

    Solved [TFS 1.0] killingInTheNameOfQuest

    What task was it that didn't work? All of them? EDIT: Could you post the Grizzly Adams NPC as well? Ignazio
  13. I

    Windows Website not showing online players

    There might be a column in the player table called online. In that case you can count the rows of each player with that status, something in this fashion: SELECT `online` FROM `players` WHERE `online` = 1 ANd you can fetch that and simply use a php function called count or sizeof. $playerCount...
  14. I

    Solved [TFS 1.0] killingInTheNameOfQuest

    Could you specify the problem? He doesn't respond when you greet him? Do you get errors in the console log? Ignazio
  15. I

    Solved [.PHP] Powergamers

    Not certain how this script works, but do you get any errors? Can you see the index file but you can't click the link? Or is the link simply empty? Ignazio
  16. I

    Solved Cannot create guilds or houses!

    Usually you get these tables with the AAC or the OT, you might have an older OT than the AAC, or just not perfectly compatible. The hard issue is to know the data type of the columns, I simply guess, guess accurately I suppose. Some are IDs and therefor ints, some are strings which become (most...
  17. I

    Solved Cannot create guilds or houses!

    Isn't there a line in the config file where you assign the path to your house.xml? What AAC are you using? CREATE TABLE IF NOT EXISTS `guild_invites` ( `player_id` int(11) NOT NULL, `guild_id` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; Ignazio
  18. I

    Lua Improve this MOD

    Sounds more like a job rather than support. I betya there are many who would gladly help you with you issue for a small fee. Ignazio
  19. I

    Solved Cannot create guilds or houses!

    ALTER TABLE `guilds` ADD `motd` VARCHAR (255) NULL DEFAULT NULL; Are you sure you wrote in the correct path to houses.xml in your config file? Ignazio
  20. I

    Lua GuildMaster for TFS 0.3.6

    Try this, you have to define "creature", fetch it from the lua and as I previously mentioned, go from last to first when fething lua variables: int32_t LuaScriptInterface::luaDoPlayerCreateGuild(lua_State* L) { std::string param_ = popString(L); Creature* creature =...
Back
Top