Onequip

mrlongshen

Noobies
Messages
1,126
Points
0
Age
36
Location
localhost 127.0.0.1
Emulator
How to make this script on equip ?

Someone

[if str>= 245] +10 Str,Agi,Dex +5% Atk

[if vit>= 245] +10 Vit,Dex,Luk +5% HP

[if int>= 245] +10 Int,Dex,Agi +5% matk

[if dex>= 245] +10 Dex,Luk,Agi +5% long ranged physical damage

 
if(readparam(bStr)>=245){ bonus bStr,10; bonus bDex,10; bonus bAgi,10; bonus2 bAddClass,Class_All,5;} },{},{}
if(readparam(bVit)>=245){ bonus bVit,10; bonus bLuk,10; bonus bDex,10; bonus bMaxHPrate,5;} },{},{}
if(readparam(bInt)>=245){ bonus bInt,10; bonus bDex,10; bonus bAgi,10; bonus bMatkRate,5;} },{},{}
if(readparam(bDex)>=245){ bonus bLuk,10; bonus bDex,10; bonus bAgi,10; bonus bLongAtkRate,5;} },{},{}
 
hercules didn't got Class_All last time I checked 
default_tongue.png


 
OnEquipScript: <"
if(readparam(bStr)>=245) {
bonus bStr,10;
bonus bAgi,10;
bonus bDex,10;
bonus bAtkRate,5;
}
">
 
OnEquipScript: <"
if(readparam(bVit)>=245) {
bonus bVit,10;
bonus bLuk,10;
bonus bDex,10;
bonus bMaxHPrate,5;
}
">


OnEquipScript: <"
if(readparam(bInt)>=245) {
bonus bInt,10;
bonus bAgi,10;
bonus bDex,10;
bonus bMatkRate,5;
}
">

 

OnEquipScript: <"
if(readparam(bDex)>=245) {
bonus bDex,10;
bonus bAgi,10;
bonus bLuk,10;
bonus bLongAtkRate,5;
 
}
">
 
you can use either Script: <" "> or OnEquipScript: <" ">

 
Last edited by a moderator:
OnEquipScript: <"
if(readparam(bStr)>=245) {
bonus bStr,10;
bonus bAgi,10;
bonus bDex,10;
bonus bAtkRate,5;
}
">
 
OnEquipScript: <"
if(readparam(bVit)>=245) {
bonus bVit,10;
bonus bLuk,10;
bonus bDex,10;
bonus bMaxHPrate,5;
}
">


OnEquipScript: <"
if(readparam(bInt)>=245) {
bonus bInt,10;
bonus bAgi,10;
bonus bDex,10;
bonus bMatkRate,5;
}
">

 

OnEquipScript: <"
if(readparam(bDex)>=245) {
bonus bDex,10;
bonus bAgi,10;
bonus bLuk,10;
bonus bLongAtkRate,5;
 
}
">
 
you can use either Script: <" "> or OnEquipScript: <" ">
no i want to use it on item. huhuh

the item only 1

 
OnEquipScript: <"
if(readparam(bStr)>=245) {
bonus bStr,10;
bonus bAgi,10;
bonus bDex,10;
bonus bAtkRate,5;
}
">
 
OnEquipScript: <"
if(readparam(bVit)>=245) {
bonus bVit,10;
bonus bLuk,10;
bonus bDex,10;
bonus bMaxHPrate,5;
}
">


OnEquipScript: <"
if(readparam(bInt)>=245) {
bonus bInt,10;
bonus bAgi,10;
bonus bDex,10;
bonus bMatkRate,5;
}
">

 

OnEquipScript: <"
if(readparam(bDex)>=245) {
bonus bDex,10;
bonus bAgi,10;
bonus bLuk,10;
bonus bLongAtkRate,5;
 
}
">
 
you can use either Script: <" "> or OnEquipScript: <" ">
no i want to use it on item. huhuh

the item only 1
here you go, test it first

OnEquipScript: <"
if(readparam(bStr)>=245) {
bonus bStr,10;
bonus bAgi,10;
bonus bDex,10;
bonus bAtkRate,5;
}
 
if(readparam(bVit)>=245) {
bonus bVit,10;
bonus bLuk,10;
bonus bDex,10;
bonus bMaxHPrate,5;
}
 
if(readparam(bInt)>=245) {
bonus bInt,10;
bonus bAgi,10;
bonus bDex,10;
bonus bMatkRate,5;
}
 
if(readparam(bDex)>=245) {
bonus bDex,10;
bonus bAgi,10;
bonus bLuk,10;
bonus bLongAtkRate,5;
}
">
 
Last edited by a moderator:
Back
Top