• 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!

Recent content by Blaggo

  1. Blaggo

    [TFS 1.1] Outfit Bonuses

    @RazorBlade From fire field: 02:00 You lose 16 hitpoints due to your own attack. It works!! Thank you so much! :D
  2. Blaggo

    Action [TFS 1.1] HomeStone (Based on WoW Hearthstone) - teleport home rock for RPG servers!

    In homestone.lua, change: addEvent(tped, (config.cooldown * 1000), cid) To: addEvent(tped, (config.cooldown * 1000), cid.uid) I had this same error at first, and this change made it work 100% :D Also great script, TY for sharing!:)
  3. Blaggo

    [TFS 1.1] Outfit Bonuses

    So I managed to figure out my previous errors, however I've run into another problem... :( I've been using this template to create bonuses: local hp = Condition(CONDITION_ATTRIBUTES) hp:setParameter(CONDITION_PARAM_TICKS, -1) hp:setParameter(CONDITION_PARAM_SUBID, 100)...
  4. Blaggo

    NPC The Gambling Man, the interactive dicer

    @Jknot In dice_gamble.lua... If you replace: local npc = getNpcCid() with: local npc = Npc(getNpcCid()) And replace: local position = {x = getNpcPos().x+2, y = getNpcPos().y, z = getNpcPos().z} with: local position = npc:getPosition() + {x = 2, y = 0, z = 0} I got these errors to stop...
  5. Blaggo

    [France]Hexera 10.94

    Looks nice, will give it a try. :)
  6. Blaggo

    CreatureEvent [TFS 1.1] Classic PVP Arena

    In my TFS 1.1 server, when the duel timer is up, players are not kicked from the arena and I get this message [!] --> [Warning - Function::getCreaturesInQuestArea] Unknown type (nil value) Lua Script Error: [Main Interface] in a timer event called from: (Unknown scriptfile)...
  7. Blaggo

    [TFS 1.1] Outfit Bonuses

    I tried to implement this into my TFS 1.1 server and I get this error when a character logs in... Lua Script Error: [Event Interface] data/events/scripts/creature.lua:Creature@onChangeOutfit data/events/scripts/creature.lua:24: attempt to index global 'oldOutfit' (a nil value) stack...
  8. Blaggo

    [TFS 1.0] Full list of NPCs with scripts?

    .
  9. Blaggo

    Znote AAC 1.4 - [TFS 0.2.13+] & [TFS 0.3.6+/0.4]

    I found a solution for this in case anyone else runs into the problem.... (Courtesy of "Limos" in another thread.)
  10. Blaggo

    Znote AAC 1.4 - [TFS 0.2.13+] & [TFS 0.3.6+/0.4]

    When someone tries to create a new account, this error message appears: string(118) "INSERT INTO `znote_accounts` (`account_id`, `ip`, `created`, `activekey`) VALUES ('13', '', '1429436440', '867312622')" (query - SQL error) Type: voidQuery (voidQuery is used for update, insert or delete from...
Back
Top