View Single Post
  #10  
Old 01-10-2015, 09:57 PM
Akkadius's Avatar
Akkadius
Administrator
 
Join Date: Feb 2009
Location: MN
Posts: 2,071
Default

Given you have standard plugins, this should work.

Put this somewhere in your EVENT_SAY (global_player.pl) or wherever you want to trigger this.

Code:
sub EVENT_SAY{
	if($text=~/#gmzone visuals/i){ 	
		plugin::SendToInstance("public", "overthere", 1, 1836, 3098, -50, "GM_Zone3", 604800); 	
	} # Send to Overthere for Weapons/Spells Preview
}
Reply With Quote