12.08.2012, 20:42
Alguйm conhece um FS que a sniper tire 100 de life ou me ensina a criar dentro do GM mesmo ? Sou iniciante em pwn
public OnPlayerTakeDamage(playerid, issuerid, Float: amount, weaponid)
{
if(weaponid == 34)
{
SetPlayerHealth(issuerid, 0);
}
return 0;
}
public OnPlayerGiveDamage(playerid, damagedid, Float: amount, weaponid) {
if(34 == weaponid) {
SetPlayerHealth(damagedid, -1.0);
SendClientMessage(damagedid, -1, "Se fudeu, Tomo Snipada troxa... HAUSHSHAUS");
}
return 1;
}
Seria playerid e nгo issuerid^^ |
o.O, Pergunta para sua mгe, ela teve comigo na cama ontem, ela deve saber... |
nao vamos brigar e um aviso minha mгe n vive cmg e n ofende ela pq ela tem problemas tb obs: os problemas que falo й usar drogas e no seu caso falei brincando.
E aproveitando topico qual й mais optimizado? OnPlayerGiveDamage ou OnPlayerTakeDamage |
public OnPlayerGiveDamage(playerid, damagedid, Float: amount, weaponid) {
if(34 == weaponid) {
new Float: Health;
if((GetPlayerArmour(playerid, Health), Health)) {
SetPlayerArmour(damagedid, -1.0);
SendClientMessage(damagedid, -1, "UiA, Quase em TiO, Se proteja para morrer...");
} else {
SetPlayerHealth(damagedid, -1.0);
SendClientMessage(damagedid, -1, "Se fudeu, Tomo Snipada troxa... HAUSHSHAUS");
}
}
return 1;
}