Jump to content
  • 0

how can i


Help-Help

Question


  • Group:  Members
  • Topic Count:  42
  • Topics Per Day:  0.01
  • Content Count:  108
  • Reputation:   2
  • Joined:  03/16/13
  • Last Seen:  

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; }


 

Link to comment
Share on other sites

7 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  50
  • Topics Per Day:  0.01
  • Content Count:  1702
  • Reputation:   238
  • Joined:  09/05/12
  • Last Seen:  

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; }
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  42
  • Topics Per Day:  0.01
  • Content Count:  108
  • Reputation:   2
  • Joined:  03/16/13
  • Last Seen:  

what do you mean?

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  50
  • Topics Per Day:  0.01
  • Content Count:  1702
  • Reputation:   238
  • Joined:  09/05/12
  • Last Seen:  

Just put the code and test it. According to this if Sex returns 0 then the character is female otherwise a male (1)

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  42
  • Topics Per Day:  0.01
  • Content Count:  108
  • Reputation:   2
  • Joined:  03/16/13
  • Last Seen:  

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; },{},{}
Link to comment
Share on other sites


  • Group:  Developer
  • Topic Count:  10
  • Topics Per Day:  0.00
  • Content Count:  2407
  • Reputation:   613
  • Joined:  07/05/12
  • Last Seen:  

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.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  42
  • Topics Per Day:  0.01
  • Content Count:  108
  • Reputation:   2
  • Joined:  03/16/13
  • Last Seen:  

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.


.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  50
  • Topics Per Day:  0.01
  • Content Count:  1702
  • Reputation:   238
  • Joined:  09/05/12
  • Last Seen:  

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; 

 

Link to comment
Share on other sites

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.

×
×
  • Create New...