Jedzkie
The Master of White Spaces
- Messages
- 632
- Points
- 0
- Age
- 33
- Location
- Philippines
- Discord
- ✪ Jedzkie#0662
- IRC Nickname
- Jedzkie
- Github
- Jedzkie
- Emulator
- Client Version
- 2016-03-16 RE
hi! how can i set a black list here in my script? i copied the black list from disguise event, then i transfer it to my script.
i set my black list as an array.
i try to put if( .@disguise == .@blacklist[0] ) but its not working. can someone help me.
here's my script:
i set my black list as an array.
i try to put if( .@disguise == .@blacklist[0] ) but its not working. can someone help me.
here's my script:
Code:
mes "[ ^ffa500Master of Disguise^000000 ]"; mes "Okay then, please write the NUMBER ID of the Monster or NPC you would like to be Disguised as."; next; input .@disguise,0; if( .@disguise == 0 ) || ( .@disguise <= 1001 ) || ( .@disguise >= 2082 ) || ( .@disguise == .@blacklist[0] ){ goto choose_one; close; } else { disguise (.@disguise); delitem 21000,1; close; }