Jump to content

Question

Posted

how can i change this item script only for famale

17929,Gypsy_Suit,Gypsy Suit,5,89000,,500,,4,,1,0xFFFFFFFE,7,2,16,,10,1,0,{ changebase 4021; },{},{ changebase Class; }
17928,Dancer_Suit,Dancer Suit,5,89000,,500,,4,,1,0xFFFFFFFE,7,2,16,,10,1,0,{ changebase 20; },{},{ changebase Class; }
17962,Baby_Dancer_Suit,Baby Dancer Suit,5,89000,,500,,4,,1,0xFFFFFFFE,7,2,16,,10,1,0,{ changebase 4043; },{},{ changebase Class; }

and how can i edit this for male only 

17926,Bard_Suit,Bard Suit,5,89000,,500,,4,,1,0xFFFFFFFE,7,2,16,,10,1,0,{ changebase 19; },{},{ changebase Class; }
17927,Clown_Suit,Clown Suit,5,89000,,500,,4,,1,0xFFFFFFFE,7,2,16,,10,1,0,{ changebase 4020; },{},{ changebase Class; }
17961,Baby_Bard_Suit,Baby Bard Suit,5,89000,,500,,4,,1,0xFFFFFFFE,7,2,16,,10,1,0,{ changebase 4042; },{},{ changebase Class; }


 

7 answers to this question

Recommended Posts

Posted

if (!Sex) { changebase <job_id>; }

17929,Gypsy_Suit,Gypsy Suit,5,89000,,500,,4,,1,0xFFFFFFFE,7,2,16,,10,1,0,{ if(!Sex) { changebase 4021; } },{},{ changebase Class; }
17928,Dancer_Suit,Dancer Suit,5,89000,,500,,4,,1,0xFFFFFFFE,7,2,16,,10,1,0,{ if(!Sex) { changebase 20; } },{},{ changebase Class; }
17962,Baby_Dancer_Suit,Baby Dancer Suit,5,89000,,500,,4,,1,0xFFFFFFFE,7,2,16,,10,1,0,{ if(!Sex) { changebase 4043; } },{},{ changebase Class; }

if (Sex) { changebase <job_id>; }

17926,Bard_Suit,Bard Suit,5,89000,,500,,4,,1,0xFFFFFFFE,7,2,16,,10,1,0,{ if(Sex) { changebase 19; } },{},{ changebase Class; }
17927,Clown_Suit,Clown Suit,5,89000,,500,,4,,1,0xFFFFFFFE,7,2,16,,10,1,0,{ if(Sex) { changebase 4020; } },{},{ changebase Class; }
17961,Baby_Bard_Suit,Baby Bard Suit,5,89000,,500,,4,,1,0xFFFFFFFE,7,2,16,,10,1,0,{ if(Sex) { changebase 4042; } },{},{ changebase Class; }
Posted

can you make it eathena



this is right im making a box click and get item

19005,Mercenary_and_Manual_Box,Mercenary and Manual Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12182,5; getitem 14545,2; getitem 12264,2; },{},{}
Posted

Another way :

// ID,Name,Name,Type,Price,Sell,Weight,ATK,DEF,Range,Slot,Job,Upper,Gender,Loc,wLV,eLV,Refineable,View,{ Script },{ OnEquip_Script },{ OnUnequip_Script }

According to the docs.

Gender: Gender restriction. 0 is female, 1 is male, 2 for both.

 

 

Sample:

17929,Gypsy_Suit,Gypsy Suit,5,89000,,500,,4,,1,0xFFFFFFFE,7,0,16,,10,1,0,{ changebase 4021; },{},{ changebase Class; }

only female gender can equip this.

Posted
Adds 5% chance of autocasting Level 5 ^FF0000Arrow Vulcan^000000.
 bonus3 bAutoSpell,"CG_ARROWVULCAN",5,0.5;
Gives 10% more damage to Arrow Vulcan when equipped.
bonus2 bSkillAtk,394,10; 

 

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...