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

Need help whit mixed | I REP+

Zarn

New Member
Joined
Oct 19, 2009
Messages
108
Reaction score
0
Now some Errors in my server exe. file thats i hope we can fix alsow ^_^

Code:
[17/05/2010 12:48:32] [Warning] NpcSystem:
[17/05/2010 12:48:32] Parameter(s) missing for item:
[17/05/2010 12:48:32] backpack
[17/05/2010 12:48:32] 1988

[17/05/2010 12:48:32] [Warning] NpcSystem:
[17/05/2010 12:48:32] Parameter(s) missing for item:
[17/05/2010 12:48:32] aol
[17/05/2010 12:48:32] 2173

I think this error come from frodo NPC sells aol and backpack and some rings, so it is a inportent NPC,



My Anti Paralyz Ring is working i think but i have 1 problem whit it the time of it disiper even if i dont use it :(

I use this

Code:
    <item id="7697" article="an" name="anti-paralyze ring" override="yes"> 
        <attribute key="weight" value="40"/> 
        <attribute key="slotType" value="ring"/> 
        <attribute key="decayTo" value="0"/> 
        <attribute key="suppressparalyze" value="1"/> 
        <attribute key="duration" value="900"/> 
        <attribute key="showduration" value="1"/> 
    </item>

And Ofc I Rep+
 
Last edited:
About UH...
It is very simple
Code:
local combat = createCombatObject()
setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_MAGIC_BLUE)
setCombatParam(combat, COMBAT_PARAM_TARGETCASTERORTOPMOST, 1)
setCombatParam(combat, COMBAT_PARAM_AGGRESSIVE, 0)

function onCastSpell(cid, var)
        doCreatureAddHealth(cid, math.random(800, 900))
        return doCombat(cid, combat, var)
end

And stop bumping after a few minutes -.-
 
About your ring.
Items.xml
First you have duration 900 = 15 minutes(10800 = 3 hours)
Your ring is disapperaing when you don't use it because you need two items(check rings[life ring, rohs etc.]they have y itemid with duration and x itemid without duration..)
About soft boots...
Items.xml
Just delete duration attribute(and decayTo delete too) And set mana/healthticks and amonuts.
 
What are you talking about?
Items? Manarune? Please explain I can't understand you ..
 
Ops my bad its soft boots, i wont soft boots to heal 200 mana and 150 healt, ^_^

and one thing more u maybe know how to do i wont this jacket to give healt and a other one to give mana u know how to do that ?

I rep+
 
Go to item.xml and press Ctrl+F and type in the id of the items (soft boots and so on) and post the codes here and I will fix it for you.
 
~ SOFT BOOTS ~
This Should never end and give 200 mana and 150 healt,
Code:
	<item id="2640" article="a" name="pair of soft boots">
		<attribute key="weight" value="800" />
		<attribute key="slotType" value="feet" />
		<attribute key="healthGain" value="2" />
		<attribute key="healthTicks" value="10000" />
		<attribute key="manaGain" value="2" />
		<attribute key="manaTicks" value="10000" />
	</item>

~HEALT JACKET~
This should give knight and pally 500 more in healt
Code:
	<item id="8880" article="a" name="Black Knight Armor">
		<attribute key="weight" value="8450" />
		<attribute key="armor" value="50" />
		<attribute key="skillSword" value="20" />
		<attribute key="skillAxe" value="20" />
		<attribute key="slotType" value="body" />
	</item>

~MANA JACKET~
This should give 500 more mana only fits druid and sorc,
Code:
	<item id="8892" article="an" name="Magic Armor">
		<attribute key="armor" value="30" />
		<attribute key="slotType" value="body" />
		<attribute key="weight" value="2550" />
		<attribute key="magiclevelpoints" value="20" />
	</item>
 
As I can see soft boots already stay forever.
How often should they give health/mana? Every sec?
PHP:
	<item id="2640" article="a" name="pair of soft boots">
		<attribute key="weight" value="800" />
		<attribute key="slotType" value="feet" />
		<attribute key="healthGain" value="150" />
		<attribute key="healthTicks" value="1000" />
		<attribute key="manaGain" value="200" />
		<attribute key="manaTicks" value="1000" />
	</item>

I am not at home atm. I will do the rest later.
 
Oki here:
HTML:
	<item id="8880" article="a" name="Black Knight Armor">
		<attribute key="weight" value="8450" />
		<attribute key="armor" value="50" />
		<attribute key="skillSword" value="20" />
		<attribute key="maxhealthpoints" value="500" />
		<attribute key="skillAxe" value="20" />
		<attribute key="slotType" value="body" />
	</item>
	
	<item id="8892" article="an" name="Magic Armor">
		<attribute key="armor" value="30" />
		<attribute key="slotType" value="body" />
		<attribute key="weight" value="2550" />
		<attribute key="magiclevelpoints" value="20" />
		<attribute key="maxmanapoints" value="500" />
	</item>

I looked them up in movements.xml and they are already registered so they can only be worn by knight/pally and the second by sorc/druid (TFS 0.3.6pl1)
 
Back
Top