Help me with this :D
#6

pawn Код:
#include <a_samp>

#if defined FILTERSCRIPT

public OnFilterScriptInit()
{
print("\n--------------------------------------");
print(" Blank Filterscript by your name here");
print("--------------------------------------\n");
return 1;
}

public OnFilterScriptExit()
{
return 1;
}

#else

main()
{
print("\n----------------------------------");
print(" Blank Gamemode by your name here");
print("----------------------------------\n");
}

#endif

public OnGameModeInit()
{
// Don't use these lines if it's a filterscript
SetGameModeText("Blank Script");
AddPlayerClass(0, 1958.3783, 1343.1572, 15.3746, 269.1425, 0, 0, 0, 0, 0, 0);
return 1;
}

public OnGameModeExit()
{
return 1;
}

public OnPlayerRequestClass(playerid, classid)
{
SetPlayerPos(playerid, 1958.3783, 1343.1572, 15.3746);
SetPlayerCameraPos(playerid, 1958.3783, 1343.1572, 15.3746);
SetPlayerCameraLookAt(playerid, 1958.3783, 1343.1572, 15.3746);
return 1;
}

public OnPlayerCommandText(playerid, cmdtext[])
{
if(IsPlayerAdmin(playerid)&&!strcmp(cmdtext, "/gov")){
SendClientMessageToAll(0xDEEE20FF, cmdtext[4]);
return 1;
}
return 0;
}
Reply


Messages In This Thread
Help me with this :D - by acajoksa - 19.01.2013, 19:45
Re: Help me with this :D - by DeathOnaStick - 19.01.2013, 19:51
Re: Help me with this :D - by acajoksa - 19.01.2013, 20:04
Re: Help me with this :D - by DeathOnaStick - 19.01.2013, 20:07
Re: Help me with this :D - by acajoksa - 19.01.2013, 20:07
Re: Help me with this :D - by DeathOnaStick - 19.01.2013, 20:09
Re: Help me with this :D - by acajoksa - 19.01.2013, 20:16
Re: Help me with this :D - by DeathOnaStick - 19.01.2013, 20:20

Forum Jump:


Users browsing this thread: 1 Guest(s)