01.04.2013, 12:00
Hello who know how to make RELIC, relic is if i have relic if kill player get 1000 Money if dont have it get 500 Money.Help Me

new HasRelic[MAX_PLAYERS]; //top of code somewhere
public OnPlayerDeath(playerid, killerid, reason)
{
if(HasRelic[playerid] == 1){
GivePlayerMoney(killerid, 1000);
} else {
GivePlayerMoney(killerid, 500);
}
}