prontera,155,181,5 script Jman 704,{ if( getgmlevel() < 80 ){ mes "Sorry i wont serve you."; }else{ mes "Hi, i am Event Manager"; mes "So, who is the Winner ?"; mes "Enter his/her name."; mes "Must be a Online Char"; mes "Insert ^FF0000CANCEL^000000 to cancel"; do{ input .@Name$; }while( compare( .@Name$,"CANCEL" ) || !isloggedin( getcharid( 3,.@Name$ ) ) ); mes "How many Point will be given ?"; input .@Points; next; mes "Name : ^FF0000"+.@Name$+"^00000"; mes "Point : ^FF0000"+.@Points$+"^00000"; if( select("Yes:No") == 1 ){ close2; message .@Name$,"You have been rewarded with "+.@Points+" Points."; attachrid( getcharid( 3,.@Name$ ) ); set #EVENTPOINTS,#EVENTPOINTS + .@Points; end; } } close; }