25.10.2018, 03:23
PHP Code:
//-----------|INCLUDES|--------------------------------------------//
#include <a_samp>
#include <zcmd>
#include <sscanf2>
//-----------------------------------------------------------------//
#define Azul #0000ff
main()
{
print("\n--------------------------------------");
print(" Servidor Iniciado '-'");
print("--------------------------------------\n");
}
public OnGameModeInit()
{
print("\n--------------------------------------");
print(" My EGGS arredounded initializing ");
print("--------------------------------------\n");
return 1;
}
public OnGameModeExit()
{
return 1;
}
public OnPlayerConnect(playerid)
{
return 1;
}
//vida
CMD:vida(playerid)
{
SetPlayerHealth(playerid, 100.0);
return 1;
}
//colete
CMD:colete(playerid)
{
SetPlayerArmour(playerid, 100.0);
return 1;
}