prontera,150,150,0 script Sample 100,{ end; OnPoringDeath: if( .mob_count ) { set .mob_count,.mob_count-1; if(.mob_count == 0) set .EVENT,0; } end; //Now you can call the Event OnStart from Sample and initiate the continues emoji usage OnStart: set .mob_count,23; // Mob count set .EVENT,1; // Our event has started // Summons all of those monsters that you want killed (23 porings) monster "prontera",123,42,"Poringz0rd",2341,.mob_count,"Sample::OnPoringDeath"; while (.EVENT) { emotion e_kis; sleep 500; } end; }