zhaosin Posted December 7, 2012 Group: Members Topic Count: 45 Topics Per Day: 0.01 Content Count: 172 Reputation: 0 Joined: 07/07/12 Last Seen: May 22, 2016 Share Posted December 7, 2012 Script can change sex for custom item but don't support for bard/dancer Quote Link to comment Share on other sites More sharing options...
Ryokem Posted December 7, 2012 Group: Members Topic Count: 0 Topics Per Day: 0 Content Count: 205 Reputation: 19 Joined: 10/12/12 Last Seen: November 7, 2013 Share Posted December 7, 2012 use atcommand "@changesex" after checking the class not to be Bard or Dancer. 1 Quote Link to comment Share on other sites More sharing options...
zhaosin Posted December 7, 2012 Group: Members Topic Count: 45 Topics Per Day: 0.01 Content Count: 172 Reputation: 0 Joined: 07/07/12 Last Seen: May 22, 2016 Author Share Posted December 7, 2012 I need script not command Quote Link to comment Share on other sites More sharing options...
JoWei Posted December 7, 2012 Group: Members Topic Count: 2 Topics Per Day: 0.00 Content Count: 117 Reputation: 18 Joined: 01/06/12 Last Seen: April 1, 2021 Share Posted December 7, 2012 (edited) Misread at first, I don't even think the conditions are neccessary due to the fact that rAthena doesn't seem to crash when changing sex on bard or dancer but anyhow here's the script: if(baseJob==Job_Dancer || baseJob==Job_Bard){}else{ atcommand "@changesex"; } Edit: added requested script Edited December 7, 2012 by JoWei 1 Quote Link to comment Share on other sites More sharing options...
zhaosin Posted December 7, 2012 Group: Members Topic Count: 45 Topics Per Day: 0.01 Content Count: 172 Reputation: 0 Joined: 07/07/12 Last Seen: May 22, 2016 Author Share Posted December 7, 2012 script for custom item please {...} {} {} ( ... is code or script... ) Quote Link to comment Share on other sites More sharing options...
JoWei Posted December 7, 2012 Group: Members Topic Count: 2 Topics Per Day: 0.00 Content Count: 117 Reputation: 18 Joined: 01/06/12 Last Seen: April 1, 2021 Share Posted December 7, 2012 I'll use red potion as an example, insert that script into your custom item at <Custom item ID>,Red_Potion,Red Potion,0,50,,70,,,,,0xFFFFFFFF,7,2,,,,,,{ if(baseJob==Job_Dancer || baseJob==Job_Bard){}else{ atcommand "@changesex"; } },{},{} 1 Quote Link to comment Share on other sites More sharing options...
Ryokem Posted December 7, 2012 Group: Members Topic Count: 0 Topics Per Day: 0 Content Count: 205 Reputation: 19 Joined: 10/12/12 Last Seen: November 7, 2013 Share Posted December 7, 2012 I need script not command use atcommand "@changesex" after checking the class not to be Bard or Dancer. It is the script! As you can see... I'll use red potion as an example, insert that script into your custom item at <Custom item ID>,Red_Potion,Red Potion,0,50,,70,,,,,0xFFFFFFFF,7,2,,,,,,{ if(baseJob==Job_Dancer || baseJob==Job_Bard){}else{ atcommand "@changesex"; } },{},{} 1 Quote Link to comment Share on other sites More sharing options...
Emistry Posted December 7, 2012 Group: Forum Moderator Topic Count: 93 Topics Per Day: 0.02 Content Count: 10017 Reputation: 2369 Joined: 10/28/11 Last Seen: 15 hours ago Share Posted December 7, 2012 <Custom item ID>,Red_Potion,Red Potion,0,50,,70,,,,,0xFFFFFFFF,7,2,,,,,,{ if( BaseJob !=Job_Dancer && BaseJob !=Job_Bard){ changesex; } },{},{} refer changesex 1 Quote Link to comment Share on other sites More sharing options...
zhaosin Posted December 8, 2012 Group: Members Topic Count: 45 Topics Per Day: 0.01 Content Count: 172 Reputation: 0 Joined: 07/07/12 Last Seen: May 22, 2016 Author Share Posted December 8, 2012 thanks all :X Quote Link to comment Share on other sites More sharing options...
Ryokem Posted December 8, 2012 Group: Members Topic Count: 0 Topics Per Day: 0 Content Count: 205 Reputation: 19 Joined: 10/12/12 Last Seen: November 7, 2013 Share Posted December 8, 2012 <Custom item ID>,Red_Potion,Red Potion,0,50,,70,,,,,0xFFFFFFFF,7,2,,,,,,{ if( BaseJob !=Job_Dancer && BaseJob !=Job_Bard){ changesex; } },{},{} refer changesex Haha I missed that command. As there is changesex command, of course it's much better than use atcommand. Quote Link to comment Share on other sites More sharing options...
Question
zhaosin
Script can change sex for custom item but don't support for bard/dancer
Link to comment
Share on other sites
9 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.