• 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!

Recent content by gaku

  1. G

    Door disappear..

    Add an action id to the door which you want to get removed. Go into the folder actions, scripts and open the file door.xml Then add a code like this: if item.actionid == 123456789 then --123456789 change to your used action id doRemoveItem(getTileItemById(fromPosition, 1111).uid, 1) --1111...
  2. G

    Block Scripting Help

    Use an action-Id and the function onUse. Should actually work.
  3. G

    NPC Story teller

    Your npc could look like this: local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) local talkState = {} function onCreatureAppear(cid) npcHandler:onCreatureAppear(cid) end function...
  4. G

    New Sinteria Firestorm open

    I must say, the real Sinteria was much better. Their homepage, their acting, their news, their English skills, ... and so on. Nevertheless, I will give it a try and check it out.
  5. G

    Equipment Charges

    I know how to add charges in weapons. But how I can add charges in armor and other eq? I have tried the same idea as at weapons, but the charges does not remove. <attribute key="charges" value="10"/> <attribute key="decayTo" value="1234"/> <attribute key="showcharges" value="1"/> Can...
  6. G

    Commands

    Is it not possible to make with command.xml? If not, its too bad, because I cant c++ :( Thx anyway
  7. G

    Commands

    How I can give commands some level requirments? Like !buyhouse lvl 30 !sellhouse lvl 30 !createguild lvl 50 and so on ... That would be nice, thx.
  8. G

    Skill-Rate

    Hi there, is it possible to make it like: If you enter an area your skill-rate gets lower and if you keep out of there, its normal (like in config). Is there any kind of function for this? Would be nice Thx Gaku :)
  9. G

    Skills

    Nobody? :S
  10. G

    Skills

    I was wondering how to calculate the dmg of skills. Example: Skill: 100 Attack: 90 Shielding: 80 MMS: 37 How can I calculate the max/min dmg? Is there a formula. I want to fix my monsters.
  11. G

    IP-Ban

    Ye I found that config now, but how do I remove the ban? Thats the main problem.
  12. G

    IP-Ban

    Hey there, I am not sure if this is the right forum but I havent found a better one. I was testing some things on my server, after typing 3-times the wrong acc. data I got ip-banned from my own server. How do I remove that? Where is it saved? Thx
  13. G

    Help with answer

    hi guys, today I tried my npc pack on the latest tfs. Somehow my npc dont answer anymore. Can anybody give me a hint or solution please local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) -- OTServ event...
  14. G

    Protection-Set

    BUMB Serp forgot me? XD
  15. G

    Exhausted Rune

    Is it possible to make a rune, that just gives the "target" exhausted? For example 10 seconds? Thx.
Back
Top