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

    Lua Gain X% Attributes When Equiped.[Creaturescript]

    onEquip. It requires me to use a pre defined item, but I want it to be any.
  2. LightTenshimaru

    Lua Gain X% Attributes When Equiped.[Creaturescript]

    I'm making a script that when equipping [Wand + Shield], [Sword, Axe, Mace + Shield], [Crossbow] have an attribute bonus in [ML], [SWORD, AXE, MACE], [DISTANCE] respectively. But I have a lot of problems, the first is that activation message creature: say ("Damage Bonus", TALKTYPE_MONSTER_SAY...
  3. LightTenshimaru

    List of useful TFS 1.x scripts.

    Works perfectly! Thank you for the great help!
  4. LightTenshimaru

    List of useful TFS 1.x scripts.

    I've rewrited the code with my poor knowledge, but still not work! :/ function onKill(cid, target) cid = cid:getId() target = target:getId() if not Creature.isMonster(target) then return true end local configs = { ids = {2148, 2152, 2160}, premium = false }...
  5. LightTenshimaru

    List of useful TFS 1.x scripts.

    Didn't work. Something wrong? Lua Script Error: [CreatureScript Interface] data/creaturescripts/scripts/autogold.lua:onKill data/creaturescripts/scripts/autogold.lua:42: attempt to call global 'getMonster Info' (a nil value) stack traceback: [C]: in function 'getMonsterInfo'...
  6. LightTenshimaru

    List of useful TFS 1.x scripts.

    This creaturescript collects gold from monsters and put in the bag, automatically organizing and changing when it comes to 100. Could convert it? function onKill(cid, target) if not isMonster(target) then return true end local configs = { ids = {2148, 2152, 2160}...
  7. LightTenshimaru

    Lua Summon With Corpse

    On My Version Summon Don't Have Bodies, I Want To Put This Option On My Server. My Summons Disapear When Die, I Want Change This.
  8. LightTenshimaru

    Lua Summon With Corpse

    I need a code that makes summon's have bodies on dying. Can someone help me?
Back
Top