Guest User

Untitled

a guest
Feb 20th, 2018
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. [QUOTE=xMike;6619091]It is like an all in one styler so you don't have to go to he sperate kin and nimakin it just advances to the next npc's so quit bitching about it of you don't like then go find something else[/QUOTE]
  2. [php]
  3. } else if (sub[0].equals("styler") {
  4. if (chr.isMale()) {
  5. NPCScriptManager.getInstance().start(chr.getClient(), 9900000, null, null);//or w/e the male kin is, I use spinel
  6. } else if (!chr.isMale()) {
  7. NPCScriptManager.getInstance().start(chr.getClient(), 9900001, null, null);//or w/e the female kin is, I use spinel
  8. }
  9. [/php]
  10.  
  11. isMale function
  12. [php] public boolean isMale() {
  13. return getGender() == 0;
  14. }[/php]
  15.  
  16. Oh look. I got rid of an unneeded NPC that you probably had a command linking to.
Add Comment
Please, Sign In to add comment