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

    Delete this moderators!

    Wrong forum
  2. P

    Solved Characters injection doesn't work.

    Solved. It was the hide_char value that was set to NULL when infact it was needed to be set to 0 or 1. UPDATE players SET hide_char = 0 WHERE hide_char IS NULL; ALTER TABLE players MODIFY hide_char INT(11) DEFAULT 0; Thank you Chris! --------- Ok, this is the original code from the latest...
  3. P

    Rune charges (REP++ FOR HELP)

    I'm trying to make my runes have charges. Shouldn't this work? I'm using TFS 0.4 rev3777 (8.6). Config.lua: removeRuneCharges = true Items.xml: <item id="2265" article="a" name="firebomb rune"> <attribute key="runeSpellName" value="adevo mas flam" /> <attribute key="weight"...
  4. P

    [Modern AAC] Delete character

    Hey guys. I've been searching forums like a mad man without finding a solution. However I have seen that people have the same problem. The problem: When I delete a character it will not be seen as an option to log in to (this is good). But! The character still appears on the personal...
  5. P

    [Modern AAC] Fragers.php, Zero showing

    I get a zero showing in my fragers.php. I can't figure out what it is though. $i = 0; foreach($SQL->query('SELECT `p`.`name` AS `name`, COUNT(`p`.`name`) as `frags` FROM `killers` k LEFT JOIN `player_killers` pk ON `k`.`id` = `pk`.`kill_id` LEFT JOIN `players` p ON...
  6. P

    [Modern AAC] Most Powerful Guilds (Most Guild Wars Won) rep+ ofc!

    Instead of basing the rank on frags I would like a rank of guild wars won. Is this possible?
  7. P

    Modern AAC (Character view)

    The problem is that when viewing a character who got a multiple character account I only see one of its characters in the "list". Also, I would like to add the character I'm currently viewing in the same field, with online/offline-status down there instead (like real Tibia). <?PHP //...
  8. P

    Lua Custom runes

    I am trying to add the old damage system to 8.6. And as I find the new system to be a bit too tricky to modify, because of its added parameters, I am looking for a code more like this: function onGetFormulaValues(Cid, level, magic) min = (level * 2 + magic * 3) * 2.0 max = (level * 2 + magic...
  9. P

    Compiling WAR SYSTEM ERROR 0.4 r3777.

    I have the following error when trying to accept a guild war invitation: [Error - TalkAction Interface] data/talkactions/scripts/war.luanSay Description: data/talkactions/scripts/war.lua:70: attempt to call global 'doGuildAddEnemy' (a nil value) stack traceback...
  10. P

    TFS3777:Change damage system

    All night I've been trying, with little success, to change the damage system in TFS r3777 back to the old system (or atleast change the rates to simulate the old system). However, the newly implemented minl, maxl, minm, maxm variables really make this task difficult for me. I would love if...
Back
Top