// Support center
- script support -1,{
OnWhisperGlobal:
set @supportname$,"Support Center";
set @servername$,"IntelRO";
mes "[support Center]";
mes "Thank you for calling the "+@servername$+" Support Center! How can we help you today?";
switch(select("I need some help","I would like to make a suggestion","Nevermind"))
{
case 1:
callfunc "supportfunc",@supportname$,0;
case 2:
callfunc "supportfunc",@supportname$,2;
case 3:
goto S_NEVERMIND;
end;
S_NEVERMIND:
next;
mes "[support Center]";
mes "Oh? Okay, feel free to come again anytime!";
close;
}
}
or
// Support center
- script support -1,{
OnWhisperGlobal:
set @supportname$,"Support Center";
set @servername$,"IntelRO";
mes "[support Center]";
mes "Thank you for calling the "+@servername$+" Support Center! How can we help you today?";
switch(select("I need some help","I would like to make a suggestion","Nevermind"))
{
case 1:
callfunc "supportfunc",@supportname$,0;
case 2:
callfunc "supportfunc",@supportname$,2;
case 3:
callsub S_NEVERMIND;
end;
}
S_NEVERMIND:
next;
mes "[support Center]";
mes "Oh? Okay, feel free to come again anytime!";
close;
}