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

    Lua [Help] Teleport to player spell

    Hi guys. I'm trying to make a teleport spell for the target. this is my function: local function onCastSpell2(parameters) npos = ??? doTeleportThing(parameters.cid,npos) doSendMagicEffect(npos, CONST_ME_TELEPORT) end can someone help me compelte it...
  2. J

    Lua [Help] - Armor elemental fire absorb

    Hi guys. Ive noticed that certains items such as firewalker boots or dragon amulet do make you absorb fire damage. I looked into items and noticed that <attribute key="absorbPercentFire" value="10"/> Is what changes the amount. HOWEVER! When trying to give my demon armor or shield...
  3. J

    Help with /ban command

    This is my ban script. local default_comment = "" local default_lenght = 1 -- 1 = 1 hour, 2 = 2 hours function onSay(cid, words, param) local parametres = string.explode(param, ",") if(parametres[1] ~= nil) then local accId = getAccountIdByName(parametres[1])...
  4. J

    [Request] - Emergency Log Out Spell!

    Hello! I'm looking for a script of a spell that takes soul and take your logout lock or just logs you out. Thanks in advacnce.
  5. J

    Lua [HELP] - My Raid is Raiding my server!

    Hi guys! I've started a raid on my server, and IT WONT STOP!!! this is the code <?xml version="1.0" encoding="UTF-8"?> <raid> <singlespawn delay="10100" name="Rat" x="750" y="757" z="7"/> <singlespawn delay="10200" name="Rat" x="765" y="757" z="7"/> <singlespawn delay="10300"...
  6. J

    Lua [HELP] - Armor vocation set

    Hi guys! Im using the 0.3.5 TFS server client. I'm trying to change certains armor so they can only be worn by a certain class. I know how to do it on weapons since its weapons.xml.. But I can't figure how to do it on armor... there is no armors.xml file or anything that clues it...
  7. J

    Action [Help]

    Hey guys, Im trying to make a teleport scroll. This is my code function onUse(cid, item, frompos, item2, topos) npos = {x=160, y=50, z=7} if item.itemid == 5952 then doTeleportThing(cid,npos) doSendMagicEffect(topos, CONST_ME_TELEPORT)...
  8. J

    [HELP] - PVP Enforced issue

    Im using TFS 0.35 When the server is PVP-Enforced AOL isn't working Also players dont get exp from eachother although my config is this: experienceFromKilledPlayers = "yes" minLevelThresholdForKilledPlayer = 0 maxLevelThresholdForKilledPlayer = 0 anyone know what may be the problem?
  9. J

    Spell [RELEASE] - Holy Cross

    Hi guys This is another spell I release. Here is a link to a movie to show how it looks like: http://rapidshare.de/files/48438236/Holy_Cross.wmv.html Also here is a youtube link: http://www.youtube.com/watch?v=W0MWZZLb9X4 (Special thanks for husam for the uploading) It is called Holy...
  10. J

    Spell My homemage spell - Implosion

    Enjoy :) local combat1 = createCombatObject() setCombatParam(combat1, COMBAT_PARAM_TYPE, COMBAT_FIREDAMAGE) setCombatParam(combat1, COMBAT_PARAM_EFFECT, CONST_ME_EXPLOSIONAREA) setCombatFormula(combat1, COMBAT_FORMULA_LEVELMAGIC, 0, 0, 0, 0) local combat2 = createCombatObject()...
  11. J

    Spell [Project] - Toggle spells

    I would like to start a cool new spell project for toggle spells For example fire shield. I basically know how to make a spell, but I donno the following: 1) How to make it start working and repeat itself 2) Assuming I do know how to make it work, how to make it so it stop! Anyone...
Back
Top