View Single Post
GHW_Chronic
SourceMod Donor
Join Date: Sep 2004
Location: Texas
Old 05-04-2005 , 04:40  
Reply With Quote #12

Code:
	if (option[0] > option[1])
	{ 
		server_cmd( "amx_lowgrav %s", LowGravity ? "off" : "on" ) 
		client_print(0,print_chat,"* Voting successful (yes ^"%d^") (no ^"%d^").",option[0],option[1]) 
	}
amx_lowgrav...there is no command in this plugin that is "amx_lowgrav" so either make one or set it to:

Code:
	if (option[0] > option[1])
	{ 
		server_cmd( "sv_gravity 200" ) 
		client_print(0,print_chat,"* Voting successful (yes ^"%d^") (no ^"%d^").",option[0],option[1]) 
	}
GHW_Chronic is offline
Send a message via AIM to GHW_Chronic