[HELP] RWC weapon Script.

karazu

New member
Messages
1,115
Points
0
Is this correct?

{ Id: 13092 AegisName: "RWC_Memory_Knife" Name: "RWC Memory Knife" Type: 4 Buy: 20 Weight: 650 Atk: 50 Range: 1 Slots: 1 Job: 0x228F5EEF Upper: 63 Loc: 2 WeaponLv: 3 View: 1 Script: <" bonus bBaseAtk,20*(getrefine()/3); bonus bMatk,20*(getrefine()/3); if(getrefine()>=9){ set .@i,1; bonus4 bAutoSpell,"BS_WEAPONPERFECT",1,20,0; if(getrefine()>=6){ set .@rate,5*(.@i+1); bonus2 bAddClass,Class_All,.@rate; bonus2 bMagicAddClass,Class_All,.@rate;"> 
NVM its working now.

Working Script
 

 
Code:
{	Id: 13092	AegisName: "RWC_Memory_Knife"	Name: "RWC Memory Knife"	Type: 5	Buy: 1000	Sell: 500	Weight: 650	Atk: 50	Range: 1	Slots: 1	Job: 0x02800075	Upper: 63	Loc: 2	WeaponLv: 3	EquipLv: 1	View: 1	Script: <"		bonus bBaseAtk,20*(getrefine()/3);		bonus bMatk,20*(getrefine()/3);		if(getrefine()>=9) {			set .@i,1;			bonus4 bAutoSpell,"BS_WEAPONPERFECT",1,20,0;		}		if(getrefine()>=6) {			set .@rate,5*(.@i+1);			bonus2 bAddClass,Class_All,.@rate;			bonus2 bMagicAddClass,Class_All,.@rate;		}	">},) 
 
Last edited by a moderator:
This is more of a database thing... since you are dealing with the item_db. Moved.

 
Back
Top