Party Broadcaster

You didn't specify anything, but here's a pretty basic (and untested by me) one.

Hope it suits your needs:

Code:
prontera,150,150	script	Broadcaster	60,{	mes "What are you looking for?";	switch(select("A party:" + (getcharid(2) == 0 ? "A guild" : "") + ":Nothing")){		case 1:			announce strcharinfo(0) + "is looking for a party!",bc_all;			close;		case 2:			if (getcharid(2)) {				mes "Sorry, you're already on a guild.";			}			else {				announce strcharinfo(0) + "is looking for a guild!",bc_all;			}			close;		default:			mes "My job is serious.";			mes "Please, do not disturb my job.";			close;	}}
 
Last edited by a moderator:
Back
Top