Jump to content

  •  

Dominating

Member Since 01 Mar 2015
Offline Last Active Sep 22 2016 05:25 PM
-----

Topics I've Started

Elemental Converters

11 September 2016 - 12:26 PM

Hello how do i change this to  work with elemental converters

 

 

Id: 12114
	AegisName: "Elemental_Fire"
	Name: "Elemental Converter"
	Type: 11
	Buy: 2
	Weight: 10
	BuyingStore: true
	Script: <" itemskill ITEM_ENCHANTARMS,4; ">
},

And This one for the Cursed Water

Id: 12020
	AegisName: "Water_Of_Darkness"
	Name: "Cursed Water"
	Type: 11
	Buy: 2
	Weight: 30
	BuyingStore: true
	Script: <" itemskill ITEM_ENCHANTARMS,8; ">
},

 


Making This Hat Costume Headgear

11 September 2016 - 04:10 AM

Hello guys.. :D

 

How do i make this Hat a Costume Item?

 

 

 

 

Id: 5435
	AegisName: "Coke_Hat"
	Name: "Red Minstrel Hat"
	Type: 5
	Buy: 20
	Weight: 100
	Def: 1
	Slots: 1
	Loc: 256
	EquipLv: 40
	View: 436
	Script: <"
		bonus bInt,1;
		bonus bMaxSP,80;
		bonus bMdef,3;
		if(getrefine()>5) {
			bonus bMdef,getrefine()-5;
			bonus bMaxSP,(getrefine()-5)*10;
		}

	">
},

 


Item Equip possible to Ninja , Gunslinger, Star Gladiator

08 September 2016 - 07:15 PM

Hello Guys!...  :D

 

How to modify this Item EXPERT RING so it can be equipped by Ninja , Gunslinger adn Start Gladiator Jobs

 

 

 

Id: 2703
	AegisName: "Expert_Ring"
	Name: "Expert Ring"
	Type: 5
	Buy: 20
	Weight: 150
	Slots: 1
	Job: {
		All: true
		Novice: false
	}
	Upper: 2
	Loc: 136
	EquipLv: 50
	Refine: false
	Script: <"
		bonus bDelayrate,-5;
		bonus bUseSPrate,5;
	">
},

 


Valkyrie Armor Modification

02 September 2016 - 06:25 PM

 
 
 

How to modify this.. item to make it wearable by:

 

- gunslinger

- soul linker

- taekwon

- star gladiator

{
	Id: 2357
	AegisName: "Valkyrie_Armor"
	Name: "Valkyrian Armor"
	Type: 5
	Weight: 2800
	Def: 6
	Slots: 1
	Job: {
		All: true
		Novice: false
	}
	Upper: 2
	Loc: 16
	EquipLv: 1
	Script: <"
		bonus bAllStats,1;
		bonus bUnbreakableArmor,0;
		if(BaseClass==Job_Mage||BaseClass==Job_Archer||BaseClass==Job_Acolyte) bonus2 bResEff,Eff_Silence,5000;
		else if(BaseClass==Job_Swordman||BaseClass==Job_Merchant||BaseClass==Job_Thief) bonus2 bResEff,Eff_Stun,5000;
	">
},