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

I have problem with 2 fiels in evo 0.8.9 client 8.0

idanmarc

New Member
Joined
Jan 19, 2009
Messages
7
Reaction score
0
I have 2 problems with :
the amulet of loss = it dosent work, how can i make it work
magic wall = the magic wal dosent over where i can change his time or ssomethinglike that .
plz help
 
for aol, add to him attribute preventLoss with value 1 in items.xml, for magic wall, get it's id (of wall, not rune!) with gm, and then change decay in items.xml, decayto should be 0.
 
aff, if you can use your head you should realise that when there is no these attributes then something is wrong. Add atribute preventLoss to aol, and show me magic wall attributes.
 
</item>
<item id="1497" article="a" name="magic wall">
<attribute key="type" value="magicfield"/>

and show me plz how to add i am new at this show me how to add for aol prevent loss where to add what to add .
 
Under one of attributes of amulet of loss add:
Code:
<attribute key="preventLoss" value="1"/>

And you have mistake in magic wall script. 1497 is a magic wall which is not supposed to dissapear.

Use this script as magic wall rune:

Code:
local combat = createCombatObject()
setCombatParam(combat, COMBAT_PARAM_DISTANCEEFFECT, CONST_ANI_ENERGY)
setCombatParam(combat, COMBAT_PARAM_CREATEITEM, 1498)

function onCastSpell(cid, var)
	return doCombat(cid, combat, var)
end

or if my script won't work, change in your old script from 1497 to 1498.
 
Back
Top