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

    Lua Convince Creatues does not consider enough room

    I'll try to help you when i'm back home.
  2. Baneczek

    Lua Last Man Standing Event bugged teleport

    Try adding an if that will check if there is a blocksolid, after the script sets the teleport destination. If it is, you have to make the script set new destination for the teleport. If you can't do it yourself, i will try to help you when i'm home.
  3. Baneczek

    Need a little bit of help with onCombat function.

    Thank you, i'll check it later when i'm back home. EDIT: It works, but i also had to write onCombat script that registers onStatsChange one.
  4. Baneczek

    Need a little bit of help with onCombat function.

    BUMP: Anyone?
  5. Baneczek

    Need a little bit of help with onCombat function.

    Hello guys. I wrote a really simple script that executes animation (custom) on creature when i attack it. It works, but not as i wanted it to work. It executes the animation when i click on the creature even if i don't hit it and am away from the creature. I want it to execute the animation only...
  6. Baneczek

    /a command not working!!!

    Can you please show your teleporttiles.lua file? Also check if <talkaction log="yes" words="/a" access="X" event="script" value="teleporttiles.lua"/> you set X for your GM character access.
  7. Baneczek

    Solved Lifesteal attack against creatures

    It doesn't work too, So if i want to have the lifesteal on every monster on the server, i have to register it to every monster too? EDIT: Sorry Limos, but i didn't get second part of what you said. Could you please help me to write the script or just give a little tip ? EDIT3: Registered an...
  8. Baneczek

    Solved Lifesteal attack against creatures

    I want knight to have a 10% of his damage lifesteal every attack he deals. The script looks like this now, but it doesn't work against monsters/creatures, but only against players. function onStatsChange(cid, attacker, type, combat, value) local drainPercent = 10 local target =...
  9. Baneczek

    Solved Lifesteal attack against creatures

    If it should look like this local drainPercent = 30 function onStatsChange(cid, attacker, type, combat, value) if (type == STATSCHANGE_MANALOSS or type == STATSCHANGE_HEALTHLOSS) then doCreatureAddHealth(attacker, value * drainPercent / 100) end return true end This also doesn't work. EDIT...
  10. Baneczek

    Solved Lifesteal attack against creatures

    Hi guys. I need some help, again with creaturescript. I want to make knight healing for a percentage of damage dealt (something like life steal) but also against creatures. I tested those two http://otland.net/threads/creaturescript-vampiric-touch-lifesteal-atk.116496/ and...
  11. Baneczek

    Any way to make monster stop following player?

    Isn't there a possibility to make it w/out source editing? Sadly, i don't have source for my OT. EDIT: Sorry, i already have hostile in my monster.xml. That was really stupid question.
  12. Baneczek

    Any way to make monster stop following player?

    It looks like this now, i also added event into monster.xml file. He still follows me, but doesn't attack. Changing hostile to 0 also changes nothing. function onCombat(cid, target) if (isPlayer(cid)) then if (isMonster(target) and (getCreatureName(target) == monster and...
  13. Baneczek

    Any way to make monster stop following player?

    I edited the post, you can check if it's similar (i don't really think it is, but still would be great if you could check it)
  14. Baneczek

    Any way to make monster stop following player?

    Hello guys. I need some help with a creaturescript. I have a script that allows player attack a monster ONLY when the player has required storage value. The same is with the monster, When player has different storage value than required monster won't attack the player. The problem i need to fix...
  15. Baneczek

    Solved Is it possible to check distance from current position to another?

    Hello guys! I just want to know, if there is any function that allows me to check distance from current position, to position specified in a script. If so, could someone tell me? I AM USING TFS 0.3.6pl1!
  16. Baneczek

    Compiling Where can i find a tutorial on how to compile tfs using CodeBlocks?

    I need to find a tutorial on how to compile TFS 0.3.6pl1 using CodeBlocks. Would be great if some one already have written one.
  17. Baneczek

    Is there any customFlag counter for TFS 0.3.6?

    Hello guys. I would like to know if there is any customFlag counter for TFS 0.3.6? (yeah i know no one is using this anymore) I really need this thing.
  18. Baneczek

    I have an idea of a script, similar to Guild War system, but i need help.

    Actually, i am here to learn something. That's why i don't want someone to write it for me. And also thank you for those words. They motivate me to work even harder :D
  19. Baneczek

    I have an idea of a script, similar to Guild War system, but i need help.

    Thank you for your reply. I will think about how to start writing it. If i will need some more help, can i PM you?
Back
Top