27.03.2009, 21:49
pawn Код:
// Top Of Script
new MicPos[][3] =
{
{X,Y,Z}
};
// DCMD Command
GetPlayerPos(playerid,X,Y,Z);
MicPos[0][0] = X;
MicPos[0][1] = Y;
MicPos[0][2] = Z;
// In OnPlayerText or w/e
if(PlayerToPoint(15.0, playerid, MicPos[0][0], MicPos[0][1], MicPos[0][2]))
{
// Do w/e
return 1;
}

