09.08.2010, 22:46
I now have another problem :/,
Can you fix the command so that i can enter the City Hall at the pickup for City Hall and I can enter LSPD at the Pickup for LSPD?
pawn Код:
dcmd_enter(playerid, params[])
{
{
#pragma unused params
PlayerToPoint(25.0, playerid, 1480.8611,-1771.3727,18.7958);
SendClientMessage(playerid, COLOR_YELLOW, "Welcome to City Hall");
SetPlayerInterior(playerid, 3);
SetPlayerPos(playerid, 384.808624,173.804992,1008.382812);
}
{
PlayerToPoint(25.0, playerid, 1554.6921, -1675.5272, 16.1953);
SendClientMessage(playerid, COLOR_YELLOW, "Welcome to LSPD");
SetPlayerInterior(playerid, 3);
SetPlayerPos(playerid, 288.745971, 169.350997, 1007.171875);
return 1;
}
}