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

Item dodający/odejmujący hp i mane

Status
Not open for further replies.

kurczok666

New Member
Joined
Nov 23, 2008
Messages
64
Reaction score
1
Witam. Mam taki problem że nie mogę coś zrobić helmetu który po założeniu dodaje hp i mane w % a po zdjęciu je odejmuję (oczywiscie chodzi o max hp i mana ). Wiem że to jest bardzo proste ale nie mam dziś głowy do tego a jest mi on potrzebny jak najszybciej.

Powiedzcie mi ludzie jak możecie czemu przy zakładaniu helmeta skrypt wykonuje się 2x?

on.lua
Code:
function onEquip(cid, itemID, slot)
local StorageUids = 110087
local procent = 1 
local hp = getCreatureMaxHealth(cid)    
local hape = hp*(procent/100)
 if slot == 1 then  
 setCreatureMaxHealth(cid, hp + hape)
 setPlayerStorageValue(cid,StorageUids,hape)
 doPlayerSendTextMessage(cid,22,"Dostales" .. hape .. "hp")
 end
 return TRUE
end

off.lua
Code:
local StorageUids = 110087
local procent = 1 
function onDeEquip(cid, item, itemID, slot)  
local hpss = getPlayerStorageValue(cid,StorageUids)
 if item.itemid == 10087 then 
 local hp = getCreatureMaxHealth(cid)   
 setCreatureMaxHealth(cid, hp - hpss)
 doPlayerSendTextMessage(cid,22,"Straciles" .. hpss .. "hp")
 end
 return TRUE
end

Code:
<movevent type="Equip" itemid="10087" slot="head" event="script" value="on.lua"/> 
	<movevent type="DeEquip" itemid="10087" slot="head" event="script" value="off.lua"/>



Jeśli loguje się na postać a ona ma na głowie ten helmet to skrypt się wykonuje i dodaje mi hp czemu tak się może dziać???
 
Last edited:
To przez return true, ale zas false nie pozwoli na zalozenie, ja radze to zrobic w items.xml maxHealthPercent czy jakos tak, zajrzyj do source.
 
Grr myślałem ze nie ma dodawania w % :D ale jednak jest wielkie dzięki.
 
Status
Not open for further replies.
Back
Top