blad z spellem

Xear

User
Zarejestrowany
Dołączył
Czerwiec 8, 2009
Posty
47
Liczba reakcji
5
local ileProcent = 15 -- Ile procent tego co odbierze doda graczowi
function onCastSpell(cid, var)
local level = getPlayerLevel(cid)
local magLv = getPlayerMagLevel(cid)
local exhausted_seconds = 1
local exhausted_storagevalue = 7481
local formula = {
min = level*250+magLv*5,
max = level*250.5+magLv*5.5
}
local target = getCreatureTarget(cid)
local cre = target
local hp = getCreatureHealth(cre)
local ileDoda = math.ceil(hp*(ileProcent/100))
if (isCreature(cre) == TRUE) then
doTargetCombatHealth(cid, cre, COMBAT_PHYSICALDAMAGE, -formula.min, -formula.max, 19)
ileDoda = (hp-getCreatureHealth(cre))*(ileProcent/100)
doCreatureAddHealth(cid, ileDoda)
doSendMagicEffect(getCreaturePosition(cid),14)
end
return doCombat(cid, combat, var)
end
19:26:01
niema exhausta
19:26:39
Z Exhaustem dodanym w spelu
19:26:40
local ileProcent = 15 -- Ile procent tego co odbierze doda graczowi
function onCastSpell(cid, var)
local level = getPlayerLevel(cid)
local magLv = getPlayerMagLevel(cid)
local exhausted_seconds = 1
local exhausted_storagevalue = 7481
local formula = {
min = level*250+magLv*5,
max = level*250.5+magLv*5.5
}
local target = getCreatureTarget(cid)
local cre = target
local hp = getCreatureHealth(cre)
local ileDoda = math.ceil(hp*(ileProcent/100))
if (isCreature(cre) == TRUE) and (os.time() > getPlayerStorageValue(cid, exhausted_storagevalue)) then
doTargetCombatHealth(cid, cre, COMBAT_PHYSICALDAMAGE, -formula.min, -formula.max, 19)
ileDoda = (hp-getCreatureHealth(cre))*(ileProcent/100)
doCreatureAddHealth(cid, ileDoda)
doSendMagicEffect(getCreaturePosition(cid),14)
setPlayerStorageValue(cid, exhausted_storagevalue, os.time() + exhausted_seconds)
if(os.time() < getPlayerStorageValue(cid, exhausted_storagevalue)) then
doSendMagicEffect(frompos, CONST_ME_POFF)
doPlayerSendCancel(cid, "You are exhausted.")
end
end
return doCombat(cid, combat, var)
end
19:27:05
i wali wtedy z exhaustem ale , non stop bledy w silniku po kazdym nacisnieciu spella
Reput za szybka pomoc , to jest do silnika wodbo :D
 
Back
Do góry