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

    HTML, CSS Programs?

    Is there any program out there that I can see the changes im making to website as i change code?
  2. MadMOOK

    simple onLogin script help

    After logging in on a mount the HP/MP regen bonus is not applied (dismounting and mounting again seems to fix this problem). How do I make onLogin check for mount, or better yet, log in with NO MOUNT??
  3. MadMOOK

    Solved On DeEquip exp ring bug

    It Gives double exp like its supposed to, and goes back to normal like its supposed to.. But when i take ring off and put back on, it is 2x MORE than was first time.. local config = { rate = 1, expstorage = 1102, register = 1202 } function onEquip(cid, item, slot) local...
  4. MadMOOK

    Znote guild issue.

    Someone had helped me with a query before and it fixed the issue.. But some players still can not join guilds.. There is no lvl req or anything like that... Ivemade test accounts and it works with new chars.. but his characer for some reason the guild invite does not even stay ! halp pls xD
  5. MadMOOK

    mining script resp help

    in the mines... when a dwarf dies on top of remains of gold ore, it doesnt remove the remains and the big stone comes back with the remains on top of it so u cant mine it again... So my question is, how do i remove the dwarf bodies WITH the remains of gold ore? function...
  6. MadMOOK

    duration to item in movement script..

    Is it possible to add ring duration before decay to 0 in a movement script with onEquip and deEquip inside same script? function onEquip(cid, item, slot) doTransformItem(item.uid, 18528) if isPremium(cid) then doPlayerSetSkills(cid, 4.0) else doPlayerSetSkills(cid, 3.0) end...
  7. MadMOOK

    Solved Trade npc is messed up

    Only the first one works..the helmet then armor and legs below it dont work.. When i say level up armor or legs, it asks the correct question but does not replace the 7 items for the one like it does for helmet.. EDIT: If i have 7 armors and say "level up helmet".. it will take the armors and...
  8. MadMOOK

    promotions problem...

    @Ninja , @Limos 10.10 0.3.7 This script works untill I log off on character and I lose the new promotion! local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) local talkState = {} function onCreatureAppear(cid)...
  9. MadMOOK

    Upgrade spell issue

    data/spells/scripts/attack/berserk.lua:13: attempt to perform ari thmetic on local 'attack' (a nil value) local SPELL_LVL_STORAGE = 18479 local combat = createCombatObject() setCombatParam(combat, COMBAT_PARAM_TYPE, COMBAT_PHYSICALDAMAGE) setCombatParam(combat, COMBAT_PARAM_EFFECT...
  10. MadMOOK

    Branch promotion npc

    Someone mind finishing this script? local vocations = { --[sorc] = {master sorc} [1] = {5}, --[druid] = {elder druid} [2] = {6}, --[paladin] = {royal paladin} [3] = {7}, --[knight] = {elite knight} [8] = {8}, --[master sorc] = {epic sorc, noob sorc, super sorc, mega sorc} [5] = {9, 13, 17, 21}...
  11. MadMOOK

    addon doll question

    How do I check players outfit he currently has on to add addon for only that outfit?
  12. MadMOOK

    Close this lol

    Nvm xD
  13. MadMOOK

    Getfunc.lua for 1.0 help

    The error that comes when I run server to get function txt file The script function getLuaFunctions()-- by Mock local str = "" for f,k in pairs(_G) do if type(k) == 'function' then str = str..f..',' elseif type(k) == 'table' then for d,o in...
  14. MadMOOK

    1.0 TFS EvoRPG v5 //10.41// 64x

    Download link:Here Comes with uniform server and a database all set up so newer people dont have to mess with it if they dont want to, or you can delete it it's completely up to you.. Only thing I did was compile and put files together, the real work was done by Zbizu and Evil Hero. Link to...
  15. MadMOOK

    Tfs 1.0 compile fail

    What did i do wrong?
  16. MadMOOK

    Solved Prem board???

    What happend to it??? EDIT: nvm...premium ran out
  17. MadMOOK

    Solved Guild query halp

    What do I do about this?
  18. MadMOOK

    10.50 RME Latest

    Compiled by me 9/2/2014. House exits are fixed in this version! Gogo Credits to everyone on https://github.com/hjnilsson/rme <3 Archive.dll is included in the file. If you wish to compile your own like I did use this tutorial, its easy! <3 Download Link: Here
  19. MadMOOK

    Lua Spell help

    Can someone make this exori spell, like the spell below it? local SPELL_LVL_STORAGE = 18479 local combat = createCombatObject() setCombatParam(combat, COMBAT_PARAM_TYPE, COMBAT_PHYSICALDAMAGE) setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_HITAREA) setCombatParam(combat...
  20. MadMOOK

    Solved Energy strike does no damage

    Can someone tell me why this isnt doing damage? 10.10 0.3.7 local SPELL_LVL_STORAGE = 18472 local combat = createCombatObject() setCombatParam(combat, COMBAT_PARAM_TYPE, COMBAT_ENERGYDAMAGE) setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_ENERGYAREA) setCombatParam(combat...
Back
Top