ToiletMaster
New member
- Messages
- 146
- Points
- 0
Hi there guys!
Yet another question from me, hope you guys don't mind!
This time I'm stuck at something.
I've started using setarray as it really simplifies alot of things!
However I can't seem to spawn all the monster I wanted for this time. it only summons the first ID that I specified on the script.
Here's the current script.
Yet another question from me, hope you guys don't mind!
This time I'm stuck at something.
I've started using setarray as it really simplifies alot of things!
However I can't seem to spawn all the monster I wanted for this time. it only summons the first ID that I specified on the script.
Here's the current script.
Code:
guild_vs5,57,47,4 script npc#hihi 73,{ set $@map$,"guild_vs5"; setarray $@Monsteridweak[1],1301,1297,1403,1654,1268,1507,1830,1307,1302,1635,1655,1636,1777,1837,1656,1219,1502,1637,1262,1700,1320,1865,1657,1702,1829,1375,1204,1653,1416,1200,1197; mes "Hello"; monster "this",0,0,"--ja--",$@monsteridweak[1],100,strnpcinfo(3)+"::OnWave1"; close; OnWave1: if(mobcount($@map$,strnpcinfo(3)+"::OnWave1") <= 95) goto L_announce; end; L_announce: announce "There are only "+mobcount($@map$ , "all")+" left! Good luck!",0; end; }