Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* Sistema de Cinto de Segurança Criado Por Lucas Emmanuel. */
- /* Ou Lucas-Fc Forum SAMP. */
- /* Autorizado a implantação desse sistema em seu Gamemode, Caso Queira */
- /* Minha Primeira FS :P */
- #include < a_samp.inc >
- #include < zcmd.inc >
- new Cinto[MAX_PLAYERS];
- public OnFilterScriptInit()
- {
- print("\n----------------------------------------");
- print(" Cinto de Segurança Carregado Com Sucesso ");
- print("----------------------------------------\n");
- return 1;
- }
- public OnPlayerSpawn(playerid)
- {
- Cinto[playerid] = 0;
- return 1;
- }
- public OnPlayerDeath(playerid, killerid, reason)
- {
- Cinto[playerid] = 0;
- return 1;
- }
- public OnVehicleDamageStatusUpdate(vehicleid, playerid)
- {
- if (GetPlayerState(playerid) == PLAYER_STATE_DRIVER)
- {
- if( Cinto[playerid] == 0 )
- {
- new Float: VidaP;
- GetPlayerHealth(playerid, VidaP);
- SetPlayerHealth(playerid, VidaP - 65);
- }
- if( Cinto[playerid] == 1 )
- {
- new Float: VidaP;
- GetPlayerHealth(playerid, VidaP);
- SetPlayerHealth(playerid, VidaP - 10);
- }
- }
- return 1;
- }
- CMD:cinto(playerid)
- {
- if (!IsPlayerInAnyVehicle(playerid)) return SendClientMessage(playerid, -1, "Você não está em um carro !");
- {
- Cinto[playerid] = 1;
- SendClientMessage(playerid, -1, "Você colocou seu Cinto de Segurança ! ");
- }
- return 1;
- }
- public OnPlayerExitVehicle(playerid, vehicleid)
- {
- Cinto[playerid] = 0;
- return 1;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement