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

    Talkaction buy !item

    Easy to configure script to buy items with an !talkaction. This one in talkactions/scripts local itemid = 5710 <!-- light shovel --> local count = 1 local succestalk = "You\'ve bought an light shovel." local fail = "You don't have enough money." function onSay (cid, words...
  2. T

    TalkAction !aol and !backpack

    At my server it removed money but didn't add the item. If you have this problem just change this: if doPlayerRemoveMoney(cid, 10000) == 1 then to if doPlayerRemoveMoney(cid, 10000) == true then function onSay(cid, words, param) if doPlayerRemoveMoney(cid, 10000) == true then...
  3. T

    Futurna

    Djivar, just got the map from mazen or what?
  4. T

    (spell) exhaustion and mana problem

    nobody?:O
  5. T

    (spell) exhaustion and mana problem

    repfor the one who help me :)
  6. T

    (spell) exhaustion and mana problem

    I have tried to make my first spell, All the effects and damaged work right but the problem is that it ain't have exhaustion and it doesn't reduce your mana! spell : local combat1 = createCombatObject() setCombatParam(combat1, COMBAT_PARAM_TYPE, COMBAT_DEATHDAMAGE) setCombatParam(combat1...
  7. T

    Need help by talkactions!

    hmm ok, nvm then.. thanks anyways :)
  8. T

    The counting game

    594
  9. T

    Need help by talkactions!

    Thanks :D now i get this: function isPlayerGhost(cid) if(not isPlayer(cid)) then return false end return getCreatureCondition(cid, CONDITION_GAMEMASTER, GAMEMASTER_INVISIBLE) or getPlayerFlagValue(cid, PLAYERFLAG_CANNOTBESEEN) end The thing i want to change is that when i...
  10. T

    Need help by talkactions!

    <talkaction log="yes" words="/ghost" access="3" event="function" value="ghost"/> Can somebody tell me where i can find that Function called ghost ? And i also can't find it for some house talkactions.. <talkaction words="alana res" filter="word-spaced" event="function" value="houseBuy"/>...
  11. T

    HELP! spell error..

    local combat1 = createCombatObject() setCombatParam(combat1, COMBAT_PARAM_TYPE, COMBAT_ENERGYDAMAGE) setCombatParam(combat1, COMBAT_PARAM_EFFECT, 37) setCombatFormula(combat1, COMBAT_FORMULA_LEVELMAGIC, -4.0, -0, -1.5, -0) local combat2 = createCombatObject() setCombatParam(combat2...
  12. T

    HELP! spell error..

    i'm using the end v0.6. I made some custom spells today and the spells work, but they only dont have exhaustion and it consumes no mana!?... In my spells.xml is this: <instant name="Druids bomb" words="exani mort tera" lvl="250" mana="1000" selftarget="1" prem="0" exhaustion="2000"...
  13. T

    1 kill is ban

    Hello, I have a enyoing bug: When a player on my server kills 1 player they get ban! config : -- Banishments broadcastBanishments = "yes" banDays = 7 finalBanDays = 30 killsToBan = 15 -- Battle worldType = "pvp" hotkeyAimbotEnabled = "yes" protectionLevel = 100...
  14. T

    Lua Changegold problem

    Still doesn't work -.- He give's an error with about that worth value..
  15. T

    Lua Changegold problem

    I've a working script that changes 100 crystal coin to 1 gold ingot.. But the npc's dont see a gold ingot as money, how can i fix this ?
Back
Top