23.02.2014, 01:53
pawn Код:
/* -------------------------------------------------------------------
FilterScript Sistema de veнculo prуprio criado por Maklister
Arquivos necessбrios:
includes a_samp, sscanf2, DOF2, zcmd, streamer
Plugins streamer.dll ( Windows ) - streamer.so ( Linux )
Pasta SeuServidor\scriptfiles\Carros
Crйditos:
Maklister: Criaзгo do cуdigo e desenvolvimento
SAMP Team, Zeex, Double o seven, ******
----------------------------------------------------------------------- */
// --------[ Includes ]-----------
#include < a_samp >
#include < sscanf2 >
#include < streamer >
#include < zcmd >
#include < DOF2 >
// --------[ Defines ] -----------
#define MAX_CARROS 100
#define DIALOG_CMDSET 101
#define AMARELO 0xE8E800AA
#define VERDE_CLARO 0x00FF00AA
#define VERMELHO_ESCURO 0xFC0000FF
#if defined MAX_PLAYERS
#undef MAX_PLAYERS
#define MAX_PLAYERS 100
#endif
// --------[ New's ] ------------
new
SetProprio = 0,
Set[MAX_CARROS],
Text3D:Textcarro[MAX_CARROS],
GPSTimerCar[MAX_PLAYERS],
Text:LocalizarDistancia[MAX_PLAYERS],
Text:LocalizarLocalizacao[MAX_PLAYERS],
bool: NaoUsado[MAX_VEHICLES]
;
Inicio do meu GM:
pawn Код:
// Meu Servidor sendo criado do ZERO
#include <a_samp>
#include <zcmd>
main()
{
print("\n----------------------------------");
print(" Servidor do henrique FODA CHUPA DODY");
print("----------------------------------\n");
}
public OnGameModeInit()
{
// Don't use these lines if it's a filterscript
SetGameModeText("RPG Brasil");
AddPlayerClass(0, 1958.3783, 1343.1572, 15.3746, 269.1425, 0, 0, 0, 0, 0, 0);
return 1;
}