14 lines
300 B
Plaintext
14 lines
300 B
Plaintext
void main()
|
|
{
|
|
string sYesVote = "The server will be reset in 10 seconds, so if you wish to preserve your character please log off now.";
|
|
object oVoter = GetFirstPC();
|
|
|
|
{
|
|
SendMessageToPC(oVoter,sYesVote);
|
|
oVoter = GetNextPC();
|
|
}
|
|
DelayCommand(10.0f,StartNewModule("pagnnwn"));
|
|
}
|
|
|
|
|