Hi need help to this script, i want to add after an hour all character will be go back to savepoint and announce that the event is ended.
Shod Time Enable
0400 ~ 0500
1200 ~ 1300
1600 ~ 1700
2300 ~ 2359
prontera,168,126,3 script Shod 689,{
mes "[ ^0065DFShod^000000 ]";
mes "Hello, im Shod";
mes "I Can Help You Warp To Your Death";
mes "You Ready?";
switch(select("Yes please:No")) {
case 1:
announce ""+ strcharinfo(0) +" Has Entered The Map",bc_all; //announce and end
warp "gld_dun01",119,20;
close;
end;
case 2:
close;
}
OnClock0400:
OnClock1200:
OnClock1600:
OnClock2300:
announce "Shod Event are now Enable.",0;
hideoffnpc "Shod";
sleep ( 60 * 60000 );
OnInit:
hideonnpc "Shod";
while (1) {
delwaitingroom;
set .@count, getmapusers("gld_dun01") + getmapusers("gld_dun02") + getmapusers("gld_dun03") + getmapusers("gld_dun04");
waitingroom "Map ["+ .@count + ((.@count==1) ? " Soul" : " Souls") +"]",0;
sleep 1000;
}
end;
}
Question
wOni
Hi need help to this script, i want to add after an hour all character will be go back to savepoint and announce that the event is ended.
i try adding additional script like this
but sad to say its not working..
thanks for the help
Edited by wOni7 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.