• 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!
  • New resources must be posted under Resources tab. A discussion thread will be created automatically, you can't open threads manually anymore.

Spell Antidote Rune 7.6

Stefx

New Member
Joined
Apr 30, 2016
Messages
16
Reaction score
0
Hi,
Does anyone have a script to cure poison ? (Deadtouch 1.9 - Tibia 7.6)
or if you know how could you try convert me this part of code on script lua ?

C++:
if(spoken=="exana pox"){
           MagicEffectClass pox;
           pox.animationColor = 0;
           pox.damageEffect = NM_ME_MAGIC_ENERGIE;
           pox.hitEffect = 255;
           pox.attackType = ATTACK_NONE;
           pox.maxDamage = 0;
           pox.minDamage = 0;
           pox.offensive = false;
           pox.manaCost = 30;
           if(creatureMakeMagic(creature, creature->pos, &pox)){
           creature->removeCondition(ATTACK_POISON);
          
           if(player)
           player->sendIcons();
           }
        }
 
Back
Top