Jump to content
  • 0

Comanda Teleport


Users

Question

Sallut , am facut si eu o comanda de teleport dar teleporteaza doar playerul si eu as vrea sa teleporteze si playerul cu tot cu masina.Am incercar assa:

[pawn] if(strcmp(cmd, "/tuningintra", true) == 0)

{

if (PlayerToPoint(30, playerid,1123.8777,-1754.6196,13.5784))

SetVehiclePos(playerid, -2706.6421,219.3271,4.1797);

SetPlayerPos(playerid,-2706.6421,219.3271,4.1797)

}[/pawn]

Va rog spunetimi si mei ce fac

HostName: [RPG]*|| Ecila Royal Gaming ||*-WIPED

Address:  93.114.82.70:7777

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

Incearca asa:

if(strcmp(cmdtext, "/tuningintra", true) == 0)
{
	if( !IsPlayerInRangeOfPoint(playerid, 30.0, 1123.8777,-1754.6196,13.5784) ) return SendClientMessage(playerid, 0xFF0000FF, "You can't use this command now, you must be at tuning place !");

	if( IsPlayerInAnyVehicle(playerid) ) SetVehiclePos( GetPlayerVehicleID(playerid) , -2706.6421,219.3271,4.1797);
	else SetPlayerPos(playerid,-2706.6421,219.3271,4.1797)
}

Se poate detalia, cu virtual world, interior, dar asa este de baza.

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. For more details you can also review our Terms of Use and Privacy Policy.