he is just looking for a NPC that can summon a monster from a list
and the NPC will record which Monster he/she have summoned ( try to explain by using Warper's Example )
this is the script you want.
prontera,155,181,5 script Sample 757,{
setarray .@MobList[1],1511,1647,1785,1630;
if( @LastMobID ) set .@MobList[0],@LastMobID;
for( set .@i,( (@LastMobID)?0:1 ); .@i < getarraysize( .@MobList ); set .@i,.@i + 1 )
set .@Menu$,.@Menu$ + ( (!.@i)?"^0000FF[ LAST MOB ] ":" ^FF0000~ " ) + getmonsterinfo(.@MobList[.@i],0)+"^000000:";
set @LastMobID,.@MobList[ ( select( .@Menu$ ) - ( (@LastMobID)?1:0 ) ) ];
mes "You selected "+getmonsterinfo(@LastMobID,0);
monster strcharinfo(3),-1,-1,"--ja--",@LastMobID,1;
close;
}
only edit this part
setarray .@MobList[1],1511,1647,1785,1630;
make sure only edit the number after the .@MobList[1]