03.01.2011, 05:27
Use [ pawn ][ /pawn ] BBcode please
That one must work xD
pawn Код:
#include <a_samp>
public OnFilterScriptInit()
{
print("\n--------------------------------------");
print(" Filterscript generated by convertFFS");
print("--------------------------------------\n");
return 1;
}
public OnFilterScriptExit()
{
return 1;
}
public OnPlayerCommandText(playerid, cmdtext[])
{
if(!strcmp("/commandtogotoposition", cmdtext, true))
{
SetPlayerPos(playerid, -120.38372040, -3081.67968750, 0.69480735);
SetPlayerFacingAngle(playerid, 270.00000000);
SendClientMessage(playerid, 0xFED530FF, "Welcome to Sols' hangout!");
return 1;
}
return 0;
}