Help-Help Posted June 18, 2013 Group: Members Topic Count: 42 Topics Per Day: 0.01 Content Count: 108 Reputation: 2 Joined: 03/16/13 Last Seen: August 9, 2015 Share Posted June 18, 2013 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; } Quote Link to comment Share on other sites More sharing options...
Patskie Posted June 18, 2013 Group: Members Topic Count: 50 Topics Per Day: 0.01 Content Count: 1702 Reputation: 241 Joined: 09/05/12 Last Seen: 21 hours ago Share Posted June 18, 2013 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; } Quote Link to comment Share on other sites More sharing options...
Help-Help Posted June 18, 2013 Group: Members Topic Count: 42 Topics Per Day: 0.01 Content Count: 108 Reputation: 2 Joined: 03/16/13 Last Seen: August 9, 2015 Author Share Posted June 18, 2013 what do you mean? Quote Link to comment Share on other sites More sharing options...
Patskie Posted June 18, 2013 Group: Members Topic Count: 50 Topics Per Day: 0.01 Content Count: 1702 Reputation: 241 Joined: 09/05/12 Last Seen: 21 hours ago Share Posted June 18, 2013 Just put the code and test it. According to this if Sex returns 0 then the character is female otherwise a male (1) Quote Link to comment Share on other sites More sharing options...
Help-Help Posted June 18, 2013 Group: Members Topic Count: 42 Topics Per Day: 0.01 Content Count: 108 Reputation: 2 Joined: 03/16/13 Last Seen: August 9, 2015 Author Share Posted June 18, 2013 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; },{},{} Quote Link to comment Share on other sites More sharing options...
Capuche Posted June 18, 2013 Group: Developer Topic Count: 10 Topics Per Day: 0.00 Content Count: 2407 Reputation: 616 Joined: 07/05/12 Last Seen: March 20 Share Posted June 18, 2013 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. Quote Link to comment Share on other sites More sharing options...
Help-Help Posted June 18, 2013 Group: Members Topic Count: 42 Topics Per Day: 0.01 Content Count: 108 Reputation: 2 Joined: 03/16/13 Last Seen: August 9, 2015 Author Share Posted June 18, 2013 capuche last how can i make this effect Adds 5% chance of autocasting Level 5 ^FF0000Arrow Vulcan^000000. Gives 10% more damage to Arrow Vulcan when equipped. . Quote Link to comment Share on other sites More sharing options...
Patskie Posted June 19, 2013 Group: Members Topic Count: 50 Topics Per Day: 0.01 Content Count: 1702 Reputation: 241 Joined: 09/05/12 Last Seen: 21 hours ago Share Posted June 19, 2013 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; Quote Link to comment Share on other sites More sharing options...
Question
Help-Help
how can i change this item script only for famale
and how can i edit this for male only
Link to comment
Share on other sites
7 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.