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

    Get Target position

    Heya everyone, I was just wondering... how do you get a target's position (Monsters & Players) in "[9.80-9.86] The Forgotten Server v0.2.15 (Mystic Spirit)"? I've tried litterally everything but all I get is this error: [25/07/2013 21:51:56] Lua Script Error: [Spell Interface]...
  2. Aleada

    Lua Stunning Spell

    I got it to work... local function effect(cid) local targ = getCreatureTarget(cid) doSendMagicEffect(getThingPos(targ), CONST_ME_SLEEP) end but btw it's only showing the magic effect only once even though I did "for j = 0,3 do" got any idea? - - - Updated - - - Well, took a while... but...
  3. Aleada

    Lua Stunning Spell

    Tried that and got this error: - - - Updated - - - Well, anyways thank you for helping... I think it's my distro so I'll change it to 0.2 and change all my files to see if that works :O REP for you though man ty :P
  4. Aleada

    Lua Stunning Spell

    That doesn't work :/ It casts the "Zzzzzz" (CONST_ME_SLEEP) on myself and not the target :/
  5. Aleada

    Lua Stunning Spell

    Heya everyone, I'm trying to edit a spell (Made by: kermaxpl) It's supposed to stun the target for 4 seconds (Works) then I'm trying to make it blink the "Sleep Magic Effect" every second until it's unstunned. Here's what I've tried so far: local combat = createCombatObject()...
  6. Aleada

    Lua Spell Error

    I'm trying to make a new spell that throws a star at the target, damages, then causes them to bleed overtime... Here's my nooby attempt: local combat = createCombatObject() setCombatParam(combat, COMBAT_PARAM_TYPE, COMBAT_PHYSICALDAMAGE) setCombatParam(combat, COMBAT_PARAM_EFFECT...
  7. Aleada

    Solved Monster problem (Spells)

    Nah it didn't have anything to do with my monsters they were perfectly fine.. I fixed it: I went through my spell.xml and found extra "/>" in there as well as "</rune>" & </instant> so I deleted and fixed it up a bit... It works now!
  8. Aleada

    Solved Monster problem (Spells)

    Hey, I just recently redid my whole spells folder including spells.xml but when I start the server I'm getting this error and I don't know how to fix it: [22/7/2013 19:2:11] [Error - Monsters::deserializeSpell] Shaburak Demon - Unknown spell name: Fire Wave [22/7/2013 19:2:11] [Warning -...
  9. Aleada

    Guess the age of the next poster!

    Nope I'm 18 :D 16?
  10. Aleada

    Problem with Remere`s on 9.86 Tibia

    You need to direct it to your "9.6" Tibia directory as the error message indicates: But I think that's what you were saying you tried first... maybe I'm wrong though :/
  11. Aleada

    [Znote AAC] No points recived.

    I'm not sure : / Does it say "You have points" or "You have 0 points" to the player that tried donating?
  12. Aleada

    [Znote AAC] No points recived.

    Hmm... is your Config.lua for your website configured right?
  13. Aleada

    Problem with otservlist.org

    Hmm.. I'm not really sure about that one :/ It's done that to me before a couple of times... I'm not sure why though, sorry :/
  14. Aleada

    [Znote AAC] No points recived.

    Paypal is automatic o.O The only reason why I asked if the account was made with an "In-game" account manager is because Znote AAC uses a different table (Whatever it's called) then the normal account manager does with the Players/Accounts... It uses "Znote_Accounts" and "Znote_Players" Sorry...
  15. Aleada

    Problem with otservlist.org

    Have you tried adding it to Otservlist.org? If not.. you have to make an account: Here Then once you have made an account you have to go under your dashboard where it says "Add Server" then put all the server's info and press "Add Server"
  16. Aleada

    [Znote AAC] No points recived.

    Did the character who donated make their character with an account manager? - - - Updated - - - And their account?
  17. Aleada

    Guard NPC

    Thank you very much for helping andypsylon! Here is the finished product: local target = 0 local prevTarget = 0 local maxChaseDistance = 7 local origPos = 0 local lastAttack = 0 local followTimeout = 10 local function goToOrigPos() target = 0 lastAttack = 0 selfFollow(0)...
  18. Aleada

    Guard NPC

    Thank you :D It works but it's kinda bugged haha if a monster is near and it's like 9 sqm away it'll sit there walking back and fourth saying "23:59 Guard: I'll get it next time..." haha - - - Updated - - - I tried adding "if(math.abs(myPos.x - origPos.x) < maxChaseDistance or math.abs(myPos.y...
  19. Aleada

    Guard NPC

    I tried it but it didn't work :/ - - - Updated - - - I tried using "doSteerCreature(getNpcCid(), origPos)" instead of "doTeleportThing(getNpcCid(), origPos)" but it didn't do anything :/
Back
Top