Requesting for this kind of script

Reins

New member
Messages
99
Points
0
Hi 

can i request that when the GMs/Admins are online the npc will show on the game like this

4_M_GENIE.gif



and when the GMs/Admins are offline the npc will show on the games like this

4_F_GENIE.gif


Of course when the player interacts with the NPC it will saids

Online: GM Example is Online

Offline: Sorry no GMs, Admins, & Staffs are currently online


Thanks!

 
I have a support request system I'm willing to share upon login if you are a GM/Admin. Here you go ^^
 

Code:
-	script	supreqadmin	-1,{ OnPCLoginEvent: .Admin = 99;.GmMast = 50;	 if(getgmlevel() >=.Admin) {	announce "Administrator "+strcharinfo(0)+" has just signed in.",bc_all,0x00FF66;	mes "[Support Request]";	mes "Would you like to accept support requests?";	next;	switch(select("Yes:No")) {	case 1:	if(getgmlevel() >=.Admin) {	announce "Administrator "+strcharinfo(0)+" is accepting support requests.",bc_all,0x00FF66;	mes "You accepted requests.";	close;	end;}	case 2:	if(getgmlevel() >=.Admin) {	announce "Administrator "+strcharinfo(0)+" is not accepting support requests.",bc_all,0x00FF66;	mes "You are not accepting quests at this time.";	close;	end;}}} else	 { if(getgmlevel() == .GmMast) {	announce "Game Master "+strcharinfo(0)+" has just signed in.",bc_all,0x0FF66;	mes "[Support Request]";	mes "Would you like to accept player questions through the whisper system?";	next;	switch(select("Yes:No")) {	case 1:	if(getgmlevel()  == .GmMast) {	announce "Game Master "+strcharinfo(0)+" is accepting questions, reports and concerns, please whisper them.",bc_all,0x00FF66;	mes "You are accepting inquiries by players at this time.";	close;	end;}	case 2:	if(getgmlevel()  == .GmMast) {	announce "Game Master "+strcharinfo(0)+" is not accepting questions, reports or concerns at this time.",bc_all,0x0FF66;	mes "You are not accepting inquiries by players at this time.";	close;	end;	}}}}}
 
Last edited by a moderator:
Back
Top