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

    You are...

    You are a Web Developer :D
  2. Dexter91

    loosing promotion!

    local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) function onCreatureAppear(cid) npcHandler:onCreatureAppear(cid) end function onCreatureDisappear(cid) npcHandler:onCreatureDisappear(cid) end function...
  3. Dexter91

    Dayz

    standalone will never come out... or atleast feels like that. I THINK they will add a dayz mod to arma 3.
  4. Dexter91

    How popular are you?

    6/10
  5. Dexter91

    NPCs bugged

    hm, seems weird. try to delete the "1" of every line. Like this: shopModule:addBuyableItem({'magic lightwand'}, 2163, 400, 'magic lightwand')
  6. Dexter91

    [Avesta] NPC buying vials

    Hi, data/global.lua PLAYERSLOT_FIRST = 1 PLAYERSLOT_LAST = 10 function removePlayerItemsWithCharges(cid, itemid, charges) if(isItemRune(itemid) ~= TRUE and isItemFluidContainer(itemid) ~= TRUE) then error('[Error] removePlayerItemsWithCharges: Item ' .. itemid .. ' is not a...
  7. Dexter91

    NPCs bugged

    Hi, What TFS are you using? Try to delete this: <parameter key="module_shop" value="1"/> and if you're running a 0.3.6 server try this: (u gotta add count!) shopModule:addBuyableItem({'rope'}, 2120, 50, 1, 'rope') shopModule:addBuyableItem({'scythe'}, 2550, 50, 1, 'scythe')...
  8. Dexter91

    HI, anti-ddos?

    Nm(nevermind)
  9. Dexter91

    GlobalEvent Last man Standing Event 100% Working

    Hey, Trying to get this thing work. But it doesn't work that well, I think it's something with my arena.lua that buggs. My character doesn't teleports into the arena when it's suppoused to. local t = { tmp = { {x = 916, y = 946, z = 7}, -- North west corner of Area where players must stand...
  10. Dexter91

    [GESIOR AAC] Full WWW otsmateria.pl folder - ALL scripts etc...

    this is not for geisor lol! nm. i think it is but it's buggy
  11. Dexter91

    Windows Website Help

    Did you do as the tutorial said? (The tutorial that was posted earlier) Ik.. But you're doing something wrong.. i'll tested this tutorial some day's ago and it worked. Seems to work for other's aswell.
  12. Dexter91

    Problem With Castle War System. [MOD]

    hm.. i'll guess I could check it up. If you want too you could upload it at speedshare or something similar and then just PM me the download link.
  13. Dexter91

    Problem With Castle War System. [MOD]

    Test this system instead: Creds to kawon. In creaturescripts, Castle_Damage.lua damages = {0,0,0} -- don`t touch function onStatsChange(cid, attacker, type, combat, value) if (not isPlayer(attacker)) then return true end -- dont sure if getCreatureMaxHealth(cid) == getCreatureHealth(cid)...
  14. Dexter91

    Problem With Castle War System. [MOD]

    hm.. what tfs are you using? test: creaturescripts\scripts\login.lua". Add: registerCreatureEvent(cid, "CastleKingDeath") registerCreatureEvent(cid, "CastleKingDamage") and in \creaturescripts\creaturescripts.xml. Add/edit: <!-- Castle System --> <event type="death" name="CastleKingDeath"...
  15. Dexter91

    Problem With Castle War System. [MOD]

    Test use this one instead of yours:<?xml version="1.0" encoding="UTF-8"?> <mod name="Castle System" version="1.1" - Pastebin.com Make sure to change the positions. If you still get the same error just switch back to your old castle script and report it here.
  16. Dexter91

    Problem With Castle War System. [MOD]

    CREATE TABLE IF NOT EXISTS `castles_war` ( `castle_id` int(5) NOT NULL, `guild_id` int(5) NOT NULL, `damage` int(20) NOT NULL, `time` int(50) NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
Back
Top