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

[Action] Marihuana New Function Need Scripers!

Knight God

Member
Joined
Oct 19, 2008
Messages
1,180
Reaction score
21
Good night, well I wonder if there could be a script to do that using marijuana,
this protect you from all the physicality and magical damage by 39%
for 15 minutes and at the end of the effect this will damage per turn
in hits of -10 hp and -10 mana for 6 minutes
.
but if you do not have mana, the damage increases hits to -20 hp per turn.
that's it, thanks in advance and hope to have luck with this script.
 
Try this o.0.. You've been waiting for a long time xD

Lua:
function onUse(cid, item, fromPosition, itemEx, toPosition)
local condition = createConditionObject(CONDITION_PARALYZE) 
local number = math.random(1,2)
if number==1 then
   if item.itemid == xxxx and  getPlayerLevel(cid) >= 100 then  --Change Item ID To The One You Want..
        doPlayerSendTextMessage(cid,21,"Just chill out man!") --Adds Health When Good Hit..
        doCreatureAddHealth(cid,150)
        doSendMagicEffect(getThingPosition(cid), CONST_ME_MAGIC_GREEN)
        doRemoveItem(item.uid, 1)
        return 1
      else
        doPlayerSendCancel(cid,"<Coughs> I think that drugs, aren't good for me...") --Takes Away When Bad Hit..
        doCreatureAddHealth(cid,-150)
        doSendMagicEffect(getThingPosition(cid), CONST_ME_MAGIC_GREEN)
        doRemoveItem(item.uid, 1)
        setConditionParam(condition, CONDITION_PARAM_TICKS, 20000) 
        setConditionFormula(condition, -1, 40, -1, 40) 
        setCombatCondition(combat, condition)  
      end
      return 1
end

Lua:
<action actionid="xxxx" event="script" value="marijuana.lua"/>
 
hm, okay good but not as requested
forgiveness for making you lose time.
I ask this is if possible
tell me if possible


do that using marijuana,
Protect you from this all the physicality and magical damage by 39%
for 15 minutes and at the end of the effect damage per turn This Will
in hits of -10 -10 hp and mana for 6 minutes.
But if you Do not have mana, the damage hits to -20 Increases hp per turn.
 
Back
Top