Descrição: Um breve e simples tutorial feito pela equipe SamP - Vício a pedido de um Fan do site, como faz para colocar as arma nas costa do personagem, Pois bem:
- Primeiro vamos criar as Seguintes #Defines:
Pawn Code:
- Agora você ira criar uma nova publique ou se seu GM já esta e em seguida vai por os seguintes códigos://=========== Arma nas Costa #define SlotAKeFUZIL 1 #define SlotEscopeta 2
Pawn Code:
//=========== Publique Arma nas Costa
public OnPlayerUpdate(playerid) { if(!IsPlayerInAnyVehicle(playerid)) { new Armas[MAX_PLAYERS],Balas[MAX_PLAYERS]; GetPlayerWeaponData(playerid, 5, Armas[playerid], Balas[playerid]); if(Armas[playerid] == 30 && Balas[playerid] >= 1)//Ak-47 { if(GetPlayerWeapon(playerid) == 30) RemovePlayerAttachedObject(playerid,SlotAKeFUZIL); else SetPlayerAttachedObject(playerid, SlotAKeFUZIL, 355, 1, -0.060921, -0.141673, 0.000000, 0.000000, 35.362735, 0.000000); } else if(Armas[playerid] == 31 && Balas[playerid] >= 1) //FUZIL { if(GetPlayerWeapon(playerid) == 31) RemovePlayerAttachedObject(playerid,SlotAKeFUZIL); else SetPlayerAttachedObject(playerid, SlotAKeFUZIL, 356, 1, -0.099681, -0.133408, 0.000000, 1.027592, 19.667785, 0.000000); } else { RemovePlayerAttachedObject(playerid,SlotAKeFUZIL); } GetPlayerWeaponData(playerid, 3, Armas[playerid], Balas[playerid]); if(Armas[playerid] == 25 && Balas[playerid] >= 1)//escopeta { if(GetPlayerWeapon(playerid) == 25) RemovePlayerAttachedObject(playerid,SlotEscopeta); else SetPlayerAttachedObject(playerid, SlotEscopeta, 349, 1, -0.109260, -0.059651, -0.066210, 186.310729, 42.375362, 6.716565); } else if(Armas[playerid] == 27 && Balas[playerid] >= 1) //escopeta de combate { if(GetPlayerWeapon(playerid) == 27) RemovePlayerAttachedObject(playerid,SlotEscopeta); else SetPlayerAttachedObject(playerid, SlotEscopeta, 351, 1, -0.181073, -0.056285, -0.081242, 181.269729, 39.399085, 12.246994); } else { RemovePlayerAttachedObject(playerid,SlotEscopeta); } } return 1; }
Simples, Agora só tenta compilar e ver se dar tudo certo.
Créditos: Werbet Lucas - SamP - Vício
- Download disponível em: Pwn/Amx