23.12.2009, 17:51 
	
	
	
		Okay I have 2 questions.
I'm making a rp server so ill need a ranged /me command but i dont know how to make it ranged.. I need someone to show me a complete ranged /me command and tell me where to put all parts.
Second:
I want to make that all entrances (teles) will work with /enter but i only get one of them to work... Here's my script of one 24/7 tele.. Could someone write how i could make the /enter command aviable for 2 or more teles?
	
	
	
	
I'm making a rp server so ill need a ranged /me command but i dont know how to make it ranged.. I need someone to show me a complete ranged /me command and tell me where to put all parts.
Second:
I want to make that all entrances (teles) will work with /enter but i only get one of them to work... Here's my script of one 24/7 tele.. Could someone write how i could make the /enter command aviable for 2 or more teles?
Код:
if(strcmp(cmdtext, "/enter",true) ==0)
	{
	if(IsPlayerInRangeOfPoint(playerid, 5.0, 994.287902,-1296.121948,13.546875))
	{
		 SetPlayerPos(playerid, -30.946699, -89.609596, 1003.549988);
		 SetPlayerInterior(playerid, 18);
		 }
	
	else
		{
		 SendClientMessage(playerid, COLOR_RED, "You are not near a 24/7.");
		 }
  return 1;
  }

