Gamemode problem.
#1

Hello, until a few months ago, the gamemode worked perfectly, I did not walk through it, I gave it to someone to handle it, now I asked for my gamemode back, got it on the host and I next problem.

I get /takezone, the take-off begins, but there are no killings and I'm wanted when I kill it, and when it's stopped it's a script that has to give you $ 2,500 when you kill another member of the mafia you are not allied with, but you get all the wanted, does anyone know why? He took the pictures below.

https://imgur.com/a/iZt2u
Reply
#2

No one in the world could tell you why if you don't show some codes. Lets start with the command
Reply
#3

if(takezone == 0 && WarInfo[pWarOn] == 1)
{
if(PlayerInfo[killerid][pMember] == 5 || PlayerInfo[killerid][pLeader] == 5)
{
if(PlayerInfo[playerid][pMember] == 6 || PlayerInfo[playerid][pLeader] == 6)
{
new killer[MAX_PLAYER_NAME];
GetPlayerName(killerid, killer, sizeof(killer));
format(string,128,"[WAR] %s The Russian Mafia has killed %s The Triads and received 2500$.",killer,name);
SendmfiMessage(COLOR_1GREEN, string);
format(string,128,"[WAR] %s The Triads was pwned by %s The Russian Mafia and lost 2500$.",name,killer);
SendthrMessage(COLOR_1BLUE, string);
GivePlayerMoney(killerid, 2500);
WarInfo[pMafia]++;
WarInfo[pAlliance1]++;
format(string, sizeof(string), "~b~Mafia~w~-%d~n~~p~Ballas~w~-%d~y~~n~Vagos~w~-%d~n~~h~Nang~w~-%d",WarInfo[pMafia],WarInfo[pBallas],WarInfo[pVagos],WarInfo[pDNB]);
TextDrawSetString(Textdraw2, string);
format(string, sizeof(string), "%d",WarInfo[pAlliance1]);
TextDrawSetString(Textdraw6, string);
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(WarInfo[pWarOn]==1 && PlayerInfo[i][pInWAR] == 1)
{
TextDrawShowForPlayer(i, Textdraw2);
TextDrawShowForPlayer(i, Textdraw6);
}
}
return 1;
}
}
if(PlayerInfo[killerid][pMember] == 6 || PlayerInfo[killerid][pLeader] == 6)
{
if(PlayerInfo[playerid][pMember] == 5 || PlayerInfo[playerid][pLeader] == 5)
{
new killer[MAX_PLAYER_NAME];
GetPlayerName(killerid, killer, sizeof(killer));
format(string,128,"[WAR] %s The Triads has killed %s The Russian Mafia and received 2500$.",killer,name);
SendthrMessage(COLOR_1GREEN, string);
format(string,128,"[WAR] %s The Russian Mafia was pwned by %s The Triads and lost 2500$.",name,killer);
SendmfiMessage(COLOR_1BLUE, string);
GivePlayerMoney(killerid, 2500);
WarInfo[pAlliance2]++;
WarInfo[pTriads]++;
format(string, sizeof(string), "~w~%d-~p~~h~~h~Triads~n~~w~%d-~b~Rifa~n~~w~%d-~g~Grove~n~~w~%d-~b~~h~~h~~h~Aztecas",WarInfo[pTriads],WarInfo[pSFR],WarInfo[pGrove],WarInfo[pAztecas]);
TextDrawSetString(Textdraw3, string);
format(string, sizeof(string), "%d",WarInfo[pAlliance2]);
TextDrawSetString(Textdraw7, string);
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(WarInfo[pWarOn]==1 && PlayerInfo[i][pInWAR] == 1)
{
TextDrawShowForPlayer(i, Textdraw3);
TextDrawShowForPlayer(i, Textdraw7);
}
}
return 1;
}
}
if(PlayerInfo[killerid][pMember] == 12 || PlayerInfo[killerid][pLeader] == 12)
{
if(PlayerInfo[playerid][pMember] == 13 || PlayerInfo[playerid][pLeader] == 13)
{
new killer[MAX_PLAYER_NAME];
GetPlayerName(killerid, killer, sizeof(killer));
format(string,128,"[WAR] %s Grove Street has killed %s Ballas and received 2500$.",killer,name);
SendBZMessage(COLOR_1GREEN, string);
format(string,128,"[WAR] %s Ballas was pwned by %s Grove Street and lost 2500$.",name,killer);
SendCZMessage(COLOR_1BLUE, string);
GivePlayerMoney(killerid, 2500);
WarInfo[pAlliance2]++;
WarInfo[pGrove]++;
format(string, sizeof(string), "~w~%d-~p~~h~~h~Triads~n~~w~%d-~b~Rifa~n~~w~%d-~g~Grove~n~~w~%d-~b~~h~~h~~h~Aztecas",WarInfo[pTriads],WarInfo[pSFR],WarInfo[pGrove],WarInfo[pAztecas]);
TextDrawSetString(Textdraw3, string);
format(string, sizeof(string), "%d",WarInfo[pAlliance2]);
TextDrawSetString(Textdraw7, string);
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(WarInfo[pWarOn]==1 && PlayerInfo[i][pInWAR] == 1)
{
TextDrawShowForPlayer(i, Textdraw3);
TextDrawShowForPlayer(i, Textdraw7);
}
}
return 1;
}
}
if(PlayerInfo[killerid][pMember] == 13 || PlayerInfo[killerid][pLeader] == 13)
{
if(PlayerInfo[playerid][pMember] == 12 || PlayerInfo[playerid][pLeader] == 12)
{
new killer[MAX_PLAYER_NAME];
GetPlayerName(killerid, killer, sizeof(killer));
format(string,128,"[WAR] %s Ballas has killed %s Grove Street and received 2500$.",killer,name);
SendCZMessage(COLOR_1GREEN, string);
format(string,128,"[WAR] %s Grove Street was pwned by %s Ballas and lost 2500$.",name,killer);
SendBZMessage(COLOR_1BLUE, string);
GivePlayerMoney(killerid, 2500);
WarInfo[pAlliance1]++;
WarInfo[pBallas]++;
format(string, sizeof(string), "~b~Mafia~w~-%d~n~~p~Ballas~w~-%d~y~~n~Vagos~w~-%d~n~~h~Nang~w~-%d",WarInfo[pMafia],WarInfo[pBallas],WarInfo[pVagos],WarInfo[pDNB]);
TextDrawSetString(Textdraw2, string);
format(string, sizeof(string), "%d",WarInfo[pAlliance1]);
TextDrawSetString(Textdraw6, string);
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(WarInfo[pWarOn]==1 && PlayerInfo[i][pInWAR] == 1)
{
TextDrawShowForPlayer(i, Textdraw2);
TextDrawShowForPlayer(i, Textdraw6);
}
}
return 2;
}
}
if(PlayerInfo[killerid][pMember] == 14 || PlayerInfo[killerid][pLeader] == 14)
{
if(PlayerInfo[playerid][pMember] == 15 || PlayerInfo[playerid][pLeader] == 15)
{
new killer[MAX_PLAYER_NAME];
GetPlayerName(killerid, killer, sizeof(killer));
format(string,128,"[WAR] %s Los Santos Vagos has killed %s Varrios Los Aztecas and received 2500$.",killer,name);
SendNTMessage(COLOR_1GREEN, string);
format(string,128,"[WAR] %s Varrios Los Aztecas was pwned by %s Los Santos Vagos and lost 2500$.",name,killer);
SendSTMessage(COLOR_1BLUE, string);
GivePlayerMoney(killerid, 2500);
WarInfo[pAlliance1]++;
WarInfo[pVagos]++;
format(string, sizeof(string), "~b~Mafia~w~-%d~n~~p~Ballas~w~-%d~y~~n~Vagos~w~-%d~n~~h~Nang~w~-%d",WarInfo[pMafia],WarInfo[pBallas],WarInfo[pVagos],WarInfo[pDNB]);
TextDrawSetString(Textdraw2, string);
format(string, sizeof(string), "%d",WarInfo[pAlliance1]);
TextDrawSetString(Textdraw6, string);
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(WarInfo[pWarOn]==1 && PlayerInfo[i][pInWAR] == 1)
{
TextDrawShowForPlayer(i, Textdraw2);
TextDrawShowForPlayer(i, Textdraw6);
}
}
return 1;
}
}
if(PlayerInfo[killerid][pMember] == 15 || PlayerInfo[killerid][pLeader] == 15)
{
if(PlayerInfo[playerid][pMember] == 14 || PlayerInfo[playerid][pLeader] == 14)
{
new killer[MAX_PLAYER_NAME];
GetPlayerName(killerid, killer, sizeof(killer));
format(string,128,"[WAR] %s Varrios Los Aztecas has killed %s Los Santos Vagos and received 2500$.",killer,name);
SendSTMessage(COLOR_1GREEN, string);
format(string,128,"[WAR] %s Los Santos Vagos was pwned by %s Varrios Los Aztecas and lost 2500$.",name,killer);
SendNTMessage(COLOR_1BLUE, string);
GivePlayerMoney(killerid, 2500);
WarInfo[pAlliance2]++;
WarInfo[pAztecas]++;
format(string, sizeof(string), "~w~%d-~p~~h~~h~Triads~n~~w~%d-~b~Rifa~n~~w~%d-~g~Grove~n~~w~%d-~b~~h~~h~~h~Aztecas",WarInfo[pTriads],WarInfo[pSFR],WarInfo[pGrove],WarInfo[pAztecas]);
TextDrawSetString(Textdraw3, string);
format(string, sizeof(string), "%d",WarInfo[pAlliance2]);
TextDrawSetString(Textdraw7, string);
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(WarInfo[pWarOn]==1 && PlayerInfo[i][pInWAR] == 1)
{
TextDrawShowForPlayer(i, Textdraw3);
TextDrawShowForPlayer(i, Textdraw7);
}
}
return 1;
}
}
if(PlayerInfo[killerid][pMember] == 5 || PlayerInfo[killerid][pLeader] == 5)
{
if(PlayerInfo[playerid][pMember] == 12 || PlayerInfo[playerid][pLeader] == 12)
{
new killer[MAX_PLAYER_NAME];
GetPlayerName(killerid, killer, sizeof(killer));
format(string,128,"[WAR] %s The Russian Mafia has killed %s Grove Street and received 2500$.",killer,name);
SendmfiMessage(COLOR_1GREEN, string);
format(string,128,"[WAR] %s Grove Street was pwned by %s The Russian Mafia and lost 2500$.",name,killer);
SendBZMessage(COLOR_1BLUE, string);
GivePlayerMoney(killerid, 2500);
WarInfo[pAlliance1]++;
WarInfo[pMafia]++;
format(string, sizeof(string), "~b~Mafia~w~-%d~n~~p~Ballas~w~-%d~y~~n~Vagos~w~-%d~n~~h~Nang~w~-%d",WarInfo[pMafia],WarInfo[pBallas],WarInfo[pVagos],WarInfo[pDNB]);
TextDrawSetString(Textdraw2, string);
format(string, sizeof(string), "%d",WarInfo[pAlliance1]);
TextDrawSetString(Textdraw6, string);
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(WarInfo[pWarOn]==1 && PlayerInfo[i][pInWAR] == 1)
{
TextDrawShowForPlayer(i, Textdraw2);
TextDrawShowForPlayer(i, Textdraw6);
}
}
return 1;
}
}
if(PlayerInfo[killerid][pMember] == 5 || PlayerInfo[killerid][pLeader] == 5)
{
if(PlayerInfo[playerid][pMember] == 15 || PlayerInfo[playerid][pLeader] == 15)
{
new killer[MAX_PLAYER_NAME];
GetPlayerName(killerid, killer, sizeof(killer));
format(string,128,"[WAR] %s The Russian Mafia has killed %s Varrios Los Aztecas and received 2500$.",killer,name);
SendmfiMessage(COLOR_1GREEN, string);
format(string,128,"[WAR] %s Varrios Los Aztecas was pwned by %s The Russian Mafia and lost 2500$.",name,killer);
SendSTMessage(COLOR_1BLUE, string);
GivePlayerMoney(killerid, 2500);
WarInfo[pAlliance1]++;
WarInfo[pMafia]++;
format(string, sizeof(string), "~b~Mafia~w~-%d~n~~p~Ballas~w~-%d~y~~n~Vagos~w~-%d~n~~h~Nang~w~-%d",WarInfo[pMafia],WarInfo[pBallas],WarInfo[pVagos],WarInfo[pDNB]);
TextDrawSetString(Textdraw2, string);
format(string, sizeof(string), "%d",WarInfo[pAlliance1]);
TextDrawSetString(Textdraw6, string);
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(WarInfo[pWarOn]==1 && PlayerInfo[i][pInWAR] == 1)
{
TextDrawShowForPlayer(i, Textdraw2);
TextDrawShowForPlayer(i, Textdraw6);
}
}
return 1;
}
}
if(PlayerInfo[killerid][pMember] == 6 || PlayerInfo[killerid][pLeader] == 6)
{
if(PlayerInfo[playerid][pMember] == 13 || PlayerInfo[playerid][pLeader] == 13)
{
new killer[MAX_PLAYER_NAME];
GetPlayerName(killerid, killer, sizeof(killer));
format(string,128,"[WAR] %s The Triads has killed %s Ballas and received 2500$.",killer,name);
SendthrMessage(COLOR_1GREEN, string);
format(string,128,"[WAR] %s Ballas was pwned by %s The Triads and lost 2500$.",name,killer);
SendCZMessage(COLOR_1BLUE, string);
GivePlayerMoney(killerid, 2500);
WarInfo[pAlliance2]++;
WarInfo[pTriads]++;
format(string, sizeof(string), "~w~%d-~p~~h~~h~Triads~n~~w~%d-~b~Rifa~n~~w~%d-~g~Grove~n~~w~%d-~b~~h~~h~~h~Aztecas",WarInfo[pTriads],WarInfo[pSFR],WarInfo[pGrove],WarInfo[pAztecas]);
TextDrawSetString(Textdraw3, string);
format(string, sizeof(string), "%d",WarInfo[pAlliance2]);
TextDrawSetString(Textdraw7, string);
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(WarInfo[pWarOn]==1 && PlayerInfo[i][pInWAR] == 1)
{
TextDrawShowForPlayer(i, Textdraw3);
TextDrawShowForPlayer(i, Textdraw7);
}
}
return 1;
}
}
if(PlayerInfo[killerid][pMember] == 6 || PlayerInfo[killerid][pLeader] == 6)
{
if(PlayerInfo[playerid][pMember] == 14 || PlayerInfo[playerid][pLeader] == 14)
{
new killer[MAX_PLAYER_NAME];
GetPlayerName(killerid, killer, sizeof(killer));
format(string,128,"[WAR] %s The Triads has killed %s Los Santos Vagos and received 2500$.",killer,name);
SendthrMessage(COLOR_1GREEN, string);
format(string,128,"[WAR] %s Los Santos Vagos was pwned by %s The Triads and lost 2500$.",name,killer);
SendNTMessage(COLOR_1BLUE, string);
GivePlayerMoney(killerid, 2500);
WarInfo[pAlliance2]++;
WarInfo[pTriads]++;
format(string, sizeof(string), "~w~%d-~p~~h~~h~Triads~n~~w~%d-~b~Rifa~n~~w~%d-~g~Grove~n~~w~%d-~b~~h~~h~~h~Aztecas",WarInfo[pTriads],WarInfo[pSFR],WarInfo[pGrove],WarInfo[pAztecas]);
TextDrawSetString(Textdraw3, string);
format(string, sizeof(string), "%d",WarInfo[pAlliance2]);
TextDrawSetString(Textdraw7, string);
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(WarInfo[pWarOn]==1 && PlayerInfo[i][pInWAR] == 1)
{
TextDrawShowForPlayer(i, Textdraw3);
TextDrawShowForPlayer(i, Textdraw7);
}
}
return 1;
}
}
if(PlayerInfo[killerid][pMember] == 12 || PlayerInfo[killerid][pLeader] == 12)
{
if(PlayerInfo[playerid][pMember] == 5 || PlayerInfo[playerid][pLeader] == 5)
{
new killer[MAX_PLAYER_NAME];
GetPlayerName(killerid, killer, sizeof(killer));
format(string,128,"[WAR] %s Grove Street has killed %s The Russian Mafia and received 2500$.",killer,name);
SendBZMessage(COLOR_1GREEN, string);
format(string,128,"[WAR] %s The Russian Mafia was pwned by %s Grove Street and lost 2500$.",name,killer);
SendmfiMessage(COLOR_1BLUE, string);
GivePlayerMoney(killerid, 2500);
WarInfo[pAlliance2]++;
WarInfo[pGrove]++;
format(string, sizeof(string), "~w~%d-~p~~h~~h~Triads~n~~w~%d-~b~Rifa~n~~w~%d-~g~Grove~n~~w~%d-~b~~h~~h~~h~Aztecas",WarInfo[pTriads],WarInfo[pSFR],WarInfo[pGrove],WarInfo[pAztecas]);
TextDrawSetString(Textdraw3, string);
format(string, sizeof(string), "%d",WarInfo[pAlliance2]);
TextDrawSetString(Textdraw7, string);
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(WarInfo[pWarOn]==1 && PlayerInfo[i][pInWAR] == 1)
{
TextDrawShowForPlayer(i, Textdraw3);
TextDrawShowForPlayer(i, Textdraw7);
}
}
return 1;
}
}
if(PlayerInfo[killerid][pMember] == 12 || PlayerInfo[killerid][pLeader] == 12)
{
if(PlayerInfo[playerid][pMember] == 14 || PlayerInfo[playerid][pLeader] == 14)
{
new killer[MAX_PLAYER_NAME];
GetPlayerName(killerid, killer, sizeof(killer));
format(string,128,"[WAR] %s Grove Street has killed %s Los Santos Vagos and received 2500$.",killer,name);
SendBZMessage(COLOR_1GREEN, string);
format(string,128,"[WAR] %s Los Santos Vagos was pwned by %s Grove Street and lost 2500$.",name,killer);
SendNTMessage(COLOR_1BLUE, string);
GivePlayerMoney(killerid, 2500);
WarInfo[pAlliance2]++;
WarInfo[pGrove]++;
format(string, sizeof(string), "~w~%d-~p~~h~~h~Triads~n~~w~%d-~b~Rifa~n~~w~%d-~g~Grove~n~~w~%d-~b~~h~~h~~h~Aztecas",WarInfo[pTriads],WarInfo[pSFR],WarInfo[pGrove],WarInfo[pAztecas]);
TextDrawSetString(Textdraw3, string);
format(string, sizeof(string), "%d",WarInfo[pAlliance2]);
TextDrawSetString(Textdraw7, string);
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(WarInfo[pWarOn]==1 && PlayerInfo[i][pInWAR] == 1)
{
TextDrawShowForPlayer(i, Textdraw3);
TextDrawShowForPlayer(i, Textdraw7);
}
}
return 1;
}
}
if(PlayerInfo[killerid][pMember] == 13 || PlayerInfo[killerid][pLeader] == 13)
{
if(PlayerInfo[playerid][pMember] == 6 || PlayerInfo[playerid][pLeader] == 6)
{
new killer[MAX_PLAYER_NAME];
GetPlayerName(killerid, killer, sizeof(killer));
format(string,128,"[WAR] %s Ballas has killed %s The Triads and received 2500$.",killer,name);
SendCZMessage(COLOR_1GREEN, string);
format(string,128,"[WAR] %s The Triads was pwned by %s Ballas and lost 2500$.",name,killer);
SendthrMessage(COLOR_1BLUE, string);
GivePlayerMoney(killerid, 2500);
WarInfo[pAlliance1]++;
WarInfo[pBallas]++;
format(string, sizeof(string), "~b~Mafia~w~-%d~n~~p~Ballas~w~-%d~y~~n~Vagos~w~-%d~n~~h~Nang~w~-%d",WarInfo[pMafia],WarInfo[pBallas],WarInfo[pVagos],WarInfo[pDNB]);
TextDrawSetString(Textdraw2, string);
format(string, sizeof(string), "%d",WarInfo[pAlliance1]);
TextDrawSetString(Textdraw6, string);
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(WarInfo[pWarOn]==1 && PlayerInfo[i][pInWAR] == 1)
{
TextDrawShowForPlayer(i, Textdraw2);
TextDrawShowForPlayer(i, Textdraw6);
}
}
return 1;
}
}
if(PlayerInfo[killerid][pMember] == 13 || PlayerInfo[killerid][pLeader] == 13)
{
if(PlayerInfo[playerid][pMember] == 15 || PlayerInfo[playerid][pLeader] == 15)
{
new killer[MAX_PLAYER_NAME];
GetPlayerName(killerid, killer, sizeof(killer));
format(string,128,"[WAR] %s Ballas has killed %s Varrios Los Aztecas and received 2500$.",killer,name);
SendCZMessage(COLOR_1GREEN, string);
format(string,128,"[WAR] %s Varrios Los Aztecas was pwned by %s Ballas and lost 2500$.",name,killer);
SendSTMessage(COLOR_1BLUE, string);
GivePlayerMoney(killerid, 2500);
WarInfo[pAlliance1]++;
WarInfo[pBallas]++;
format(string, sizeof(string), "~b~Mafia~w~-%d~n~~p~Ballas~w~-%d~y~~n~Vagos~w~-%d~n~~h~Nang~w~-%d",WarInfo[pMafia],WarInfo[pBallas],WarInfo[pVagos],WarInfo[pDNB]);
TextDrawSetString(Textdraw2, string);
format(string, sizeof(string), "%d",WarInfo[pAlliance1]);
TextDrawSetString(Textdraw6, string);
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(WarInfo[pWarOn]==1 && PlayerInfo[i][pInWAR] == 1)
{
TextDrawShowForPlayer(i, Textdraw2);
TextDrawShowForPlayer(i, Textdraw6);
}
}
return 1;
}
}
if(PlayerInfo[killerid][pMember] == 14 || PlayerInfo[killerid][pLeader] == 14)
{
if(PlayerInfo[playerid][pMember] == 6 || PlayerInfo[playerid][pLeader] == 6)
{
new killer[MAX_PLAYER_NAME];
GetPlayerName(killerid, killer, sizeof(killer));
format(string,128,"[WAR] %s Los Santos Vagos has killed %s The Triads and received 2500$.",killer,name);
SendNTMessage(COLOR_1GREEN, string);
format(string,128,"[WAR] %s The Triads was pwned by %s Los Santos Vagos and lost 2500$.",name,killer);
SendthrMessage(COLOR_1BLUE, string);
GivePlayerMoney(killerid, 2500);
WarInfo[pAlliance1]++;
WarInfo[pVagos]++;
format(string, sizeof(string), "~b~Mafia~w~-%d~n~~p~Ballas~w~-%d~y~~n~Vagos~w~-%d~n~~h~Nang~w~-%d",WarInfo[pMafia],WarInfo[pBallas],WarInfo[pVagos],WarInfo[pDNB]);
TextDrawSetString(Textdraw2, string);
format(string, sizeof(string), "%d",WarInfo[pAlliance1]);
TextDrawSetString(Textdraw6, string);
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(WarInfo[pWarOn]==1 && PlayerInfo[i][pInWAR] == 1)
{
TextDrawShowForPlayer(i, Textdraw2);
TextDrawShowForPlayer(i, Textdraw6);
}
}
return 1;
}
}
if(PlayerInfo[killerid][pMember] == 14 || PlayerInfo[killerid][pLeader] == 14)
{
if(PlayerInfo[playerid][pMember] == 12 || PlayerInfo[playerid][pLeader] == 12)
{
new killer[MAX_PLAYER_NAME];
GetPlayerName(killerid, killer, sizeof(killer));
format(string,128,"[WAR] %s Los Santos Vagos has killed %s Grove Street and received 2500$.",killer,name);
SendNTMessage(COLOR_1GREEN, string);
format(string,128,"[WAR] %s Grove Street was pwned by %s Los Santos Vagos and lost 2500$.",name,killer);
SendBZMessage(COLOR_1BLUE, string);
GivePlayerMoney(killerid, 2500);
WarInfo[pAlliance1]++;
WarInfo[pVagos]++;
format(string, sizeof(string), "~b~Mafia~w~-%d~n~~p~Ballas~w~-%d~y~~n~Vagos~w~-%d~n~~h~Nang~w~-%d",WarInfo[pMafia],WarInfo[pBallas],WarInfo[pVagos],WarInfo[pDNB]);
TextDrawSetString(Textdraw2, string);
format(string, sizeof(string), "%d",WarInfo[pAlliance1]);
TextDrawSetString(Textdraw6, string);
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(WarInfo[pWarOn]==1 && PlayerInfo[i][pInWAR] == 1)
{
TextDrawShowForPlayer(i, Textdraw2);
TextDrawShowForPlayer(i, Textdraw6);
}
}
return 1;
}
}
if(PlayerInfo[killerid][pMember] == 15 || PlayerInfo[killerid][pLeader] == 15)
{
if(PlayerInfo[playerid][pMember] == 5 || PlayerInfo[playerid][pLeader] == 5)
{
new killer[MAX_PLAYER_NAME];
GetPlayerName(killerid, killer, sizeof(killer));
format(string,128,"[WAR] %s Varrios Los Aztecas has killed %s The Russian Mafia and received 2500$.",killer,name);
SendSTMessage(COLOR_1GREEN, string);
format(string,128,"[WAR] %s The Russian Mafia was pwned by %s Varrios Los Aztecas and lost 2500$.",name,killer);
SendmfiMessage(COLOR_1BLUE, string);
GivePlayerMoney(killerid, 2500);
WarInfo[pAlliance2]++;
WarInfo[pAztecas]++;
format(string, sizeof(string), "~w~%d-~p~~h~~h~Triads~n~~w~%d-~b~Rifa~n~~w~%d-~g~Grove~n~~w~%d-~b~~h~~h~~h~Aztecas",WarInfo[pTriads],WarInfo[pSFR],WarInfo[pGrove],WarInfo[pAztecas]);
TextDrawSetString(Textdraw3, string);
format(string, sizeof(string), "%d",WarInfo[pAlliance2]);
TextDrawSetString(Textdraw7, string);
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(WarInfo[pWarOn]==1 && PlayerInfo[i][pInWAR] == 1)
{
TextDrawShowForPlayer(i, Textdraw3);
TextDrawShowForPlayer(i, Textdraw7);
}
}
return 1;
}
}
if(PlayerInfo[killerid][pMember] == 15 || PlayerInfo[killerid][pLeader] == 15)
{
if(PlayerInfo[playerid][pMember] == 13 || PlayerInfo[playerid][pLeader] == 13)
{
new killer[MAX_PLAYER_NAME];
GetPlayerName(killerid, killer, sizeof(killer));
format(string,128,"[WAR] %s Varrios Los Aztecas has killed %s Ballas and received 2500$.",killer,name);
SendSTMessage(COLOR_1GREEN, string);
format(string,128,"[WAR] %s Ballas was pwned by %s Varrios Los Aztecas and lost 2500$.",name,killer);
SendCZMessage(COLOR_1BLUE, string);
GivePlayerMoney(killerid, 2500);
WarInfo[pAlliance2]++;
return 1;
}
}
if(PlayerInfo[killerid][pMember] == 16 || PlayerInfo[killerid][pLeader] == 16)
{
if(PlayerInfo[playerid][pMember] == 6 || PlayerInfo[playerid][pLeader] == 6)
{
new killer[MAX_PLAYER_NAME];
GetPlayerName(killerid, killer, sizeof(killer));
format(string,128,"[WAR] %s Da Nang Boys has killed %s The Triads and received 2500$.",killer,name);
SendDNBMessage(COLOR_1GREEN, string);
format(string,128,"[WAR] %s The Triads was pwned by %s Da Nang Boys and lost 2500$.",name,killer);
SendthrMessage(COLOR_1BLUE, string);
GivePlayerMoney(killerid, 2500);
WarInfo[pAlliance1]++;
WarInfo[pDNB]++;
format(string, sizeof(string), "~b~Mafia~w~-%d~n~~p~Ballas~w~-%d~y~~n~Vagos~w~-%d~n~~h~Nang~w~-%d",WarInfo[pMafia],WarInfo[pBallas],WarInfo[pVagos],WarInfo[pDNB]);
TextDrawSetString(Textdraw2, string);
format(string, sizeof(string), "%d",WarInfo[pAlliance1]);
TextDrawSetString(Textdraw6, string);
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(WarInfo[pWarOn]==1 && PlayerInfo[i][pInWAR] == 1)
{
TextDrawShowForPlayer(i, Textdraw2);
TextDrawShowForPlayer(i, Textdraw6);
}
}
return 1;
}
}
if(PlayerInfo[killerid][pMember] == 6 || PlayerInfo[killerid][pLeader] == 6)
{
if(PlayerInfo[playerid][pMember] == 16 || PlayerInfo[playerid][pLeader] == 16)
{
new killer[MAX_PLAYER_NAME];
GetPlayerName(killerid, killer, sizeof(killer));
format(string,128,"[WAR] %s The Triads has killed %s Da Nang Boys and received 2500$.",killer,name);
SendthrMessage(COLOR_1GREEN, string);
format(string,128,"[WAR] %s Da Nang Boys was pwned by %s The Triads and lost 2500$.",name,killer);
SendDNBMessage(COLOR_1BLUE, string);
GivePlayerMoney(killerid, 2500);
WarInfo[pAlliance2]++;
WarInfo[pTriads]++;
format(string, sizeof(string), "~w~%d-~p~~h~~h~Triads~n~~w~%d-~b~Rifa~n~~w~%d-~g~Grove~n~~w~%d-~b~~h~~h~~h~Aztecas",WarInfo[pTriads],WarInfo[pSFR],WarInfo[pGrove],WarInfo[pAztecas]);
TextDrawSetString(Textdraw3, string);
format(string, sizeof(string), "%d",WarInfo[pAlliance2]);
TextDrawSetString(Textdraw7, string);
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(WarInfo[pWarOn]==1 && PlayerInfo[i][pInWAR] == 1)
{
TextDrawShowForPlayer(i, Textdraw3);
TextDrawShowForPlayer(i, Textdraw7);
}
}
return 1;
}
}
if(PlayerInfo[killerid][pMember] == 16 || PlayerInfo[killerid][pLeader] == 16)
{
if(PlayerInfo[playerid][pMember] == 12 || PlayerInfo[playerid][pLeader] == 12)
{
new killer[MAX_PLAYER_NAME];
GetPlayerName(killerid, killer, sizeof(killer));
format(string,128,"[WAR] %s Da Nang Boys has killed %s Grove Street and received 2500$.",killer,name);
SendDNBMessage(COLOR_1GREEN, string);
format(string,128,"[WAR] %s Grove Street was pwned by %s Da Nang Boys and lost 2500$.",name,killer);
SendBZMessage(COLOR_1BLUE, string);
GivePlayerMoney(killerid, 2500);
WarInfo[pAlliance1]++;
WarInfo[pDNB]++;
format(string, sizeof(string), "~b~Mafia~w~-%d~n~~p~Ballas~w~-%d~y~~n~Vagos~w~-%d~n~~h~Nang~w~-%d",WarInfo[pMafia],WarInfo[pBallas],WarInfo[pVagos],WarInfo[pDNB]);
TextDrawSetString(Textdraw2, string);
format(string, sizeof(string), "%d",WarInfo[pAlliance1]);
TextDrawSetString(Textdraw6, string);
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(WarInfo[pWarOn]==1 && PlayerInfo[i][pInWAR] == 1)
{
TextDrawShowForPlayer(i, Textdraw2);
TextDrawShowForPlayer(i, Textdraw6);
}
}
return 1;
}
}

if(PlayerInfo[killerid][pMember] == 12 || PlayerInfo[killerid][pLeader] == 12)
{
if(PlayerInfo[playerid][pMember] == 16 || PlayerInfo[playerid][pLeader] == 16)
{
new killer[MAX_PLAYER_NAME];
GetPlayerName(killerid, killer, sizeof(killer));
format(string,128,"[WAR] %s Grove Street has killed %s Da Nang Boys and received 2500$.",killer,name);
SendBZMessage(COLOR_1GREEN, string);
format(string,128,"[WAR] %s Da Nang Boys was pwned by %s Grove Street and lost 2500$.",name,killer);
SendDNBMessage(COLOR_1BLUE, string);
GivePlayerMoney(killerid, 2500);
WarInfo[pAlliance2]++;
WarInfo[pGrove]++;
format(string, sizeof(string), "~w~%d-~p~~h~~h~Triads~n~~w~%d-~b~Rifa~n~~w~%d-~g~Grove~n~~w~%d-~b~~h~~h~~h~Aztecas",WarInfo[pTriads],WarInfo[pSFR],WarInfo[pGrove],WarInfo[pAztecas]);
TextDrawSetString(Textdraw3, string);
format(string, sizeof(string), "%d",WarInfo[pAlliance2]);
TextDrawSetString(Textdraw7, string);
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(WarInfo[pWarOn]==1 && PlayerInfo[i][pInWAR] == 1)
{
TextDrawShowForPlayer(i, Textdraw3);
TextDrawShowForPlayer(i, Textdraw7);
}
}
return 1;
}
}
if(PlayerInfo[killerid][pMember] == 16 || PlayerInfo[killerid][pLeader] == 16)
{
if(PlayerInfo[playerid][pMember] == 15 || PlayerInfo[playerid][pLeader] == 15)
{
new killer[MAX_PLAYER_NAME];
GetPlayerName(killerid, killer, sizeof(killer));
format(string,128,"[WAR] %s Da Nang Boys has killed %s Varrios Los Aztecas and received 2500$.",killer,name);
SendDNBMessage(COLOR_1GREEN, string);
format(string,128,"[WAR] %s Varrios Los Aztecas was pwned by %s Da Nang Boys and lost 2500$.",name,killer);
SendSTMessage(COLOR_1BLUE, string);
GivePlayerMoney(killerid, 2500);
WarInfo[pAlliance1]++;
WarInfo[pDNB]++;
format(string, sizeof(string), "~b~Mafia~w~-%d~n~~p~Ballas~w~-%d~y~~n~Vagos~w~-%d~n~~h~Nang~w~-%d",WarInfo[pMafia],WarInfo[pBallas],WarInfo[pVagos],WarInfo[pDNB]);
TextDrawSetString(Textdraw2, string);
format(string, sizeof(string), "%d",WarInfo[pAlliance1]);
TextDrawSetString(Textdraw6, string);
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(WarInfo[pWarOn]==1 && PlayerInfo[i][pInWAR] == 1)
{
TextDrawShowForPlayer(i, Textdraw2);
TextDrawShowForPlayer(i, Textdraw6);
}
}
return 1;
}
}
if(PlayerInfo[killerid][pMember] == 15 || PlayerInfo[killerid][pLeader] == 15)
{
if(PlayerInfo[playerid][pMember] == 16 || PlayerInfo[playerid][pLeader] == 16)
{
new killer[MAX_PLAYER_NAME];
GetPlayerName(killerid, killer, sizeof(killer));
format(string,128,"[WAR] %s Varrios Los Aztecas has killed %s Da Nang Boys and received 2500$.",killer,name);
SendSTMessage(COLOR_1GREEN, string);
format(string,128,"[WAR] %s Da Nang Boys was pwned by %s Varrios Los Aztecas and lost 2500$.",name,killer);
SendDNBMessage(COLOR_1BLUE, string);
GivePlayerMoney(killerid, 2500);
WarInfo[pAlliance2]++;
WarInfo[pAztecas]++;
format(string, sizeof(string), "~w~%d-~p~~h~~h~Triads~n~~w~%d-~b~Rifa~n~~w~%d-~g~Grove~n~~w~%d-~b~~h~~h~~h~Aztecas",WarInfo[pTriads],WarInfo[pSFR],WarInfo[pGrove],WarInfo[pAztecas]);
TextDrawSetString(Textdraw3, string);
format(string, sizeof(string), "%d",WarInfo[pAlliance2]);
TextDrawSetString(Textdraw7, string);
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(WarInfo[pWarOn]==1 && PlayerInfo[i][pInWAR] == 1)
{
TextDrawShowForPlayer(i, Textdraw3);
TextDrawShowForPlayer(i, Textdraw7);
}
}
return 1;
}
}
if(PlayerInfo[killerid][pMember] == 17 || PlayerInfo[killerid][pLeader] == 17)
{
if(PlayerInfo[playerid][pMember] == 5 || PlayerInfo[playerid][pLeader] == 5)
{
new killer[MAX_PLAYER_NAME];
GetPlayerName(killerid, killer, sizeof(killer));
format(string,128,"[WAR] %s San Fierro Rifa has killed %s The Russian Mafia and received 2500$.",killer,name);
SendLVCMessage(COLOR_1GREEN, string);
format(string,128,"[WAR] %s The Russian Mafia was pwned by %s San Fierro Rifa and lost 2500$.",name,killer);
SendmfiMessage(COLOR_1BLUE, string);
GivePlayerMoney(killerid, 2500);
WarInfo[pAlliance2]++;
WarInfo[pSFR]++;
format(string, sizeof(string), "~w~%d-~p~~h~~h~Triads~n~~w~%d-~b~Rifa~n~~w~%d-~g~Grove~n~~w~%d-~b~~h~~h~~h~Aztecas",WarInfo[pTriads],WarInfo[pSFR],WarInfo[pGrove],WarInfo[pAztecas]);
TextDrawSetString(Textdraw3, string);
format(string, sizeof(string), "%d",WarInfo[pAlliance2]);
TextDrawSetString(Textdraw7, string);
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(WarInfo[pWarOn]==1 && PlayerInfo[i][pInWAR] == 1)
{
TextDrawShowForPlayer(i, Textdraw3);
TextDrawShowForPlayer(i, Textdraw7);
}
}
return 1;
}
}
if(PlayerInfo[killerid][pMember] == 5 || PlayerInfo[killerid][pLeader] == 5)
{
if(PlayerInfo[playerid][pMember] == 17 || PlayerInfo[playerid][pLeader] == 17)
{
new killer[MAX_PLAYER_NAME];
GetPlayerName(killerid, killer, sizeof(killer));
format(string,128,"[WAR] %s The Russian Mafia has killed %s San Fierro Rifa and received 2500$.",killer,name);
SendmfiMessage(COLOR_1GREEN, string);
format(string,128,"[WAR] %s San Fierro Rifa was pwned by %s The Russian Mafia and lost 2500$.",name,killer);
SendLVCMessage(COLOR_1BLUE, string);
GivePlayerMoney(killerid, 2500);
WarInfo[pAlliance1]++;
WarInfo[pMafia]++;
format(string, sizeof(string), "~b~Mafia~w~-%d~n~~p~Ballas~w~-%d~y~~n~Vagos~w~-%d~n~~h~Nang~w~-%d",WarInfo[pMafia],WarInfo[pBallas],WarInfo[pVagos],WarInfo[pDNB]);
TextDrawSetString(Textdraw2, string);
format(string, sizeof(string), "%d",WarInfo[pAlliance1]);
TextDrawSetString(Textdraw6, string);
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(WarInfo[pWarOn]==1 && PlayerInfo[i][pInWAR] == 1)
{
TextDrawShowForPlayer(i, Textdraw2);
TextDrawShowForPlayer(i, Textdraw6);
}
}
return 1;
}
}
if(PlayerInfo[killerid][pMember] == 17 || PlayerInfo[killerid][pLeader] == 17)
{
if(PlayerInfo[playerid][pMember] == 13 || PlayerInfo[playerid][pLeader] == 13)
{
new killer[MAX_PLAYER_NAME];
GetPlayerName(killerid, killer, sizeof(killer));
format(string,128,"[WAR] %s San Fierro Rifa has killed %s Ballas and received 2500$.",killer,name);
SendLVCMessage(COLOR_1GREEN, string);
format(string,128,"[WAR] %s Ballas was pwned by %s San Fierro Rifa and lost 2500$.",name,killer);
SendCZMessage(COLOR_1BLUE, string);
GivePlayerMoney(killerid, 2500);
WarInfo[pAlliance2]++;
WarInfo[pSFR]++;
format(string, sizeof(string), "~w~%d-~p~~h~~h~Triads~n~~w~%d-~b~Rifa~n~~w~%d-~g~Grove~n~~w~%d-~b~~h~~h~~h~Aztecas",WarInfo[pTriads],WarInfo[pSFR],WarInfo[pGrove],WarInfo[pAztecas]);
TextDrawSetString(Textdraw3, string);
format(string, sizeof(string), "%d",WarInfo[pAlliance2]);
TextDrawSetString(Textdraw7, string);
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(WarInfo[pWarOn]==1 && PlayerInfo[i][pInWAR] == 1)
{
TextDrawShowForPlayer(i, Textdraw3);
TextDrawShowForPlayer(i, Textdraw7);
}
}
return 1;
}
}
if(PlayerInfo[killerid][pMember] == 13 || PlayerInfo[killerid][pLeader] == 13)
{
if(PlayerInfo[playerid][pMember] == 17 || PlayerInfo[playerid][pLeader] == 17)
{
new killer[MAX_PLAYER_NAME];
GetPlayerName(killerid, killer, sizeof(killer));
format(string,128,"[WAR] %s Ballas has killed %s San Fierro Rifa and received 2500$.",killer,name);
SendCZMessage(COLOR_1GREEN, string);
format(string,128,"[WAR] %s San Fierro Rifa was pwned by %s Ballas and lost 2500$.",name,killer);
SendLVCMessage(COLOR_1BLUE, string);
GivePlayerMoney(killerid, 2500);
WarInfo[pAlliance1]++;
WarInfo[pBallas]++;
format(string, sizeof(string), "~b~Mafia~w~-%d~n~~p~Ballas~w~-%d~y~~n~Vagos~w~-%d~n~~h~Nang~w~-%d",WarInfo[pMafia],WarInfo[pBallas],WarInfo[pVagos],WarInfo[pDNB]);
TextDrawSetString(Textdraw2, string);
format(string, sizeof(string), "%d",WarInfo[pAlliance1]);
TextDrawSetString(Textdraw6, string);
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(WarInfo[pWarOn]==1 && PlayerInfo[i][pInWAR] == 1)
{
TextDrawShowForPlayer(i, Textdraw2);
TextDrawShowForPlayer(i, Textdraw6);
}
}
return 1;
}
}
if(PlayerInfo[killerid][pMember] == 17 || PlayerInfo[killerid][pLeader] == 17)
{
if(PlayerInfo[playerid][pMember] == 14 || PlayerInfo[playerid][pLeader] == 14)
{
new killer[MAX_PLAYER_NAME];
GetPlayerName(killerid, killer, sizeof(killer));
format(string,128,"[WAR] %s San Fierro Rifa has killed %s Los Santos Vagos and received 2500$.",killer,name);
SendLVCMessage(COLOR_1GREEN, string);
format(string,128,"[WAR] %s Los Santos Vagos was pwned by %s San Fierro Rifa and lost 2500$.",name,killer);
SendNTMessage(COLOR_1BLUE, string);
GivePlayerMoney(killerid, 2500);
WarInfo[pAlliance2]++;
WarInfo[pSFR]++;
format(string, sizeof(string), "~w~%d-~p~~h~~h~Triads~n~~w~%d-~b~Rifa~n~~w~%d-~g~Grove~n~~w~%d-~b~~h~~h~~h~Aztecas",WarInfo[pTriads],WarInfo[pSFR],WarInfo[pGrove],WarInfo[pAztecas]);
TextDrawSetString(Textdraw3, string);
format(string, sizeof(string), "%d",WarInfo[pAlliance2]);
TextDrawSetString(Textdraw7, string);
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(WarInfo[pWarOn]==1 && PlayerInfo[i][pInWAR] == 1)
{
TextDrawShowForPlayer(i, Textdraw3);
TextDrawShowForPlayer(i, Textdraw7);
}
}
return 1;
}
}
if(PlayerInfo[killerid][pMember] == 14 || PlayerInfo[killerid][pLeader] == 14)
{
if(PlayerInfo[playerid][pMember] == 17 || PlayerInfo[playerid][pLeader] == 17)
{
new killer[MAX_PLAYER_NAME];
GetPlayerName(killerid, killer, sizeof(killer));
format(string,128,"[WAR] %s Los Santos Vagos has killed %s San Fierro Rifa and received 2500$.",killer,name);
SendNTMessage(COLOR_1GREEN, string);
format(string,128,"[WAR] %s San Fierro Rifa was pwned by %s Los Santos Vagos and lost 2500$.",name,killer);
SendLVCMessage(COLOR_1BLUE, string);
GivePlayerMoney(killerid, 2500);
WarInfo[pAlliance1]++;
WarInfo[pVagos]++;
format(string, sizeof(string), "~b~Mafia~w~-%d~n~~p~Ballas~w~-%d~y~~n~Vagos~w~-%d~n~~h~Nang~w~-%d",WarInfo[pMafia],WarInfo[pBallas],WarInfo[pVagos],WarInfo[pDNB]);
TextDrawSetString(Textdraw2, string);
format(string, sizeof(string), "%d",WarInfo[pAlliance1]);
TextDrawSetString(Textdraw6, string);
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(WarInfo[pWarOn]==1 && PlayerInfo[i][pInWAR] == 1)
{
TextDrawShowForPlayer(i, Textdraw2);
TextDrawShowForPlayer(i, Textdraw6);
}
}
return 1;
}
}
if(PlayerInfo[killerid][pMember] == 17 || PlayerInfo[killerid][pLeader] == 17)
{
if(PlayerInfo[playerid][pMember] == 16 || PlayerInfo[playerid][pLeader] == 16)
{
new killer[MAX_PLAYER_NAME];
GetPlayerName(killerid, killer, sizeof(killer));
format(string,128,"[WAR] %s San Fierro Rifa has killed %s Da Nang Boys and received 2500$.",killer,name);
SendLVCMessage(COLOR_1GREEN, string);
format(string,128,"[WAR] %s Da Nang Boys was pwned by %s San Fierro Rifa and lost 2500$.",name,killer);
SendDNBMessage(COLOR_1BLUE, string);
GivePlayerMoney(killerid, 2500);
WarInfo[pAlliance2]++;
WarInfo[pSFR]++;
format(string, sizeof(string), "~w~%d-~p~~h~~h~Triads~n~~w~%d-~b~Rifa~n~~w~%d-~g~Grove~n~~w~%d-~b~~h~~h~~h~Aztecas",WarInfo[pTriads],WarInfo[pSFR],WarInfo[pGrove],WarInfo[pAztecas]);
TextDrawSetString(Textdraw3, string);
format(string, sizeof(string), "%d",WarInfo[pAlliance2]);
TextDrawSetString(Textdraw7, string);
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(WarInfo[pWarOn]==1 && PlayerInfo[i][pInWAR] == 1)
{
TextDrawShowForPlayer(i, Textdraw3);
TextDrawShowForPlayer(i, Textdraw7);
}
}
return 1;
}
}
if(PlayerInfo[killerid][pMember] == 16 || PlayerInfo[killerid][pLeader] == 16)
{
if(PlayerInfo[playerid][pMember] == 17 || PlayerInfo[playerid][pLeader] == 17)
{
new killer[MAX_PLAYER_NAME];
GetPlayerName(killerid, killer, sizeof(killer));
format(string,128,"[WAR] %s Da Nang Boys has killed %s San Fierro Rifa and received 2500$.",killer,name);
SendDNBMessage(COLOR_1GREEN, string);
format(string,128,"[WAR] %s San Fierro Rifa was pwned by %s Da Nang Boys and lost 2500$.",name,killer);
SendLVCMessage(COLOR_1BLUE, string);
GivePlayerMoney(killerid, 2500);
WarInfo[pAlliance1]++;
WarInfo[pDNB]++;
format(string, sizeof(string), "~b~Mafia~w~-%d~n~~p~Ballas~w~-%d~y~~n~Vagos~w~-%d~n~~h~Nang~w~-%d",WarInfo[pMafia],WarInfo[pBallas],WarInfo[pVagos],WarInfo[pDNB]);
TextDrawSetString(Textdraw2, string);
format(string, sizeof(string), "%d",WarInfo[pAlliance1]);
TextDrawSetString(Textdraw6, string);
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(WarInfo[pWarOn]==1 && PlayerInfo[i][pInWAR] == 1)
{
TextDrawShowForPlayer(i, Textdraw2);
TextDrawShowForPlayer(i, Textdraw6);
}
}
return 1;
}
}
}
if(takezone == 0 && WarInfo[pWarOn] == 0)
{
if(PlayerInfo[killerid][pMember] == 5 || PlayerInfo[killerid][pLeader] == 5)
{
if(PlayerInfo[playerid][pMember] == 6 || PlayerInfo[playerid][pLeader] == 6)
{
new killer[MAX_PLAYER_NAME];
GetPlayerName(killerid, killer, sizeof(killer));
format(string,128,"?%s [The Russian Mafia] has killed %s [The Triads] and received 2500$.",killer,name);
SendmfiMessage(COLOR_1GREEN, string);
format(string,128,"?%s [The Triads] was pwned by %s [The Russian Mafia] and lost 2500$.",name,killer);
SendthrMessage(COLOR_1BLUE, string);
GivePlayerMoney(killerid, 2500);
return 1;
}
}
if(PlayerInfo[killerid][pMember] == 6 || PlayerInfo[killerid][pLeader] == 6)
{
if(PlayerInfo[playerid][pMember] == 5 || PlayerInfo[playerid][pLeader] == 5)
{
new killer[MAX_PLAYER_NAME];
GetPlayerName(killerid, killer, sizeof(killer));
format(string,128,"?%s [The Triads] has killed %s [The Russian Mafia] and received 2500$.",killer,name);
SendthrMessage(COLOR_1GREEN, string);
format(string,128,"?%s [The Russian Mafia] was pwned by %s [The Triads] and lost 2500$.",name,killer);
SendmfiMessage(COLOR_1BLUE, string);
GivePlayerMoney(killerid, 2500);
return 1;
}
}
if(PlayerInfo[killerid][pMember] == 12 || PlayerInfo[killerid][pLeader] == 12)
{
if(PlayerInfo[playerid][pMember] == 13 || PlayerInfo[playerid][pLeader] == 13)
{
new killer[MAX_PLAYER_NAME];
GetPlayerName(killerid, killer, sizeof(killer));
format(string,128,"?%s [Grove Street] has killed %s [Ballas] and received 2500$.",killer,name);
SendBZMessage(COLOR_1GREEN, string);
format(string,128,"?%s [Ballas] was pwned by %s [Grove Street] and lost 2500$.",name,killer);
SendCZMessage(COLOR_1BLUE, string);
GivePlayerMoney(killerid, 2500);
return 1;
}
}
if(PlayerInfo[killerid][pMember] == 13 || PlayerInfo[killerid][pLeader] == 13)
{
if(PlayerInfo[playerid][pMember] == 12 || PlayerInfo[playerid][pLeader] == 12)
{
new killer[MAX_PLAYER_NAME];
GetPlayerName(killerid, killer, sizeof(killer));
format(string,128,"?%s [Ballas] has killed %s [Grove Street] and received 2500$.",killer,name);
SendCZMessage(COLOR_1GREEN, string);
format(string,128,"?%s [Grove Street] was pwned by %s [Ballas] and lost 2500$.",name,killer);
SendBZMessage(COLOR_1BLUE, string);
GivePlayerMoney(killerid, 2500);
return 1;
}
}
if(PlayerInfo[killerid][pMember] == 14 || PlayerInfo[killerid][pLeader] == 14)
{
if(PlayerInfo[playerid][pMember] == 15 || PlayerInfo[playerid][pLeader] == 15)
{
new killer[MAX_PLAYER_NAME];
GetPlayerName(killerid, killer, sizeof(killer));
format(string,128,"?%s [Los Santos Vagos] has killed %s [Varrios Los Aztecas] and received 2500$.",killer,name);
SendNTMessage(COLOR_1GREEN, string);
format(string,128,"?%s [Varrios Los Aztecas] was pwned by %s [Los Santos Vagos] and lost 2500$.",name,killer);
SendSTMessage(COLOR_1BLUE, string);
GivePlayerMoney(killerid, 2500);
return 1;
}
}
if(PlayerInfo[killerid][pMember] == 15 || PlayerInfo[killerid][pLeader] == 15)
{
if(PlayerInfo[playerid][pMember] == 14 || PlayerInfo[playerid][pLeader] == 14)
{
new killer[MAX_PLAYER_NAME];
GetPlayerName(killerid, killer, sizeof(killer));
format(string,128,"?%s [Varrios Los Aztecas] has killed %s [Los Santos Vagos] and received 2500$.",killer,name);
SendSTMessage(COLOR_1GREEN, string);
format(string,128,"?%s [Los Santos Vagos] was pwned by %s [Varrios Los Aztecas] and lost 2500$.",name,killer);
SendNTMessage(COLOR_1BLUE, string);
GivePlayerMoney(killerid, 2500);
return 1;
}
}
if(PlayerInfo[killerid][pMember] == 5 || PlayerInfo[killerid][pLeader] == 5)
{
if(PlayerInfo[playerid][pMember] == 12 || PlayerInfo[playerid][pLeader] == 12)
{
new killer[MAX_PLAYER_NAME];
GetPlayerName(killerid, killer, sizeof(killer));
format(string,128,"?%s [The Russian Mafia] has killed %s [Grove Street] and received 2500$.",killer,name);
SendmfiMessage(COLOR_1GREEN, string);
format(string,128,"?%s [Grove Street] was pwned by %s [The Russian Mafia] and lost 2500$.",name,killer);
SendBZMessage(COLOR_1BLUE, string);
GivePlayerMoney(killerid, 2500);
return 1;
}
}
if(PlayerInfo[killerid][pMember] == 5 || PlayerInfo[killerid][pLeader] == 5)
{
if(PlayerInfo[playerid][pMember] == 15 || PlayerInfo[playerid][pLeader] == 15)
{
new killer[MAX_PLAYER_NAME];
GetPlayerName(killerid, killer, sizeof(killer));
format(string,128,"?%s [The Russian Mafia] has killed %s [Varrios Los Aztecas] and received 2500$.",killer,name);
SendmfiMessage(COLOR_1GREEN, string);
format(string,128,"?%s [Varrios Los Aztecas] was pwned by %s [The Russian Mafia] and lost 2500$.",name,killer);
SendSTMessage(COLOR_1BLUE, string);
GivePlayerMoney(killerid, 2500);
return 1;
}
}
if(PlayerInfo[killerid][pMember] == 6 || PlayerInfo[killerid][pLeader] == 6)
{
if(PlayerInfo[playerid][pMember] == 13 || PlayerInfo[playerid][pLeader] == 13)
{
new killer[MAX_PLAYER_NAME];
GetPlayerName(killerid, killer, sizeof(killer));
format(string,128,"?%s [The Triads] has killed %s [Ballas] and received 2500$.",killer,name);
SendthrMessage(COLOR_1GREEN, string);
format(string,128,"?%s [Ballas] was pwned by %s [The Triads] and lost 2500$.",name,killer);
SendCZMessage(COLOR_1BLUE, string);
GivePlayerMoney(killerid, 2500);
return 1;
}
}
if(PlayerInfo[killerid][pMember] == 6 || PlayerInfo[killerid][pLeader] == 6)
{
if(PlayerInfo[playerid][pMember] == 14 || PlayerInfo[playerid][pLeader] == 14)
{
new killer[MAX_PLAYER_NAME];
GetPlayerName(killerid, killer, sizeof(killer));
format(string,128,"?%s [The Triads] has killed %s [Los Santos Vagos] and received 2500$.",killer,name);
SendthrMessage(COLOR_1GREEN, string);
format(string,128,"?%s [Los Santos Vagos] was pwned by %s [The Triads] and lost 2500$.",name,killer);
SendNTMessage(COLOR_1BLUE, string);
GivePlayerMoney(killerid, 2500);
return 1;
}
}
if(PlayerInfo[killerid][pMember] == 12 || PlayerInfo[killerid][pLeader] == 12)
{
if(PlayerInfo[playerid][pMember] == 5 || PlayerInfo[playerid][pLeader] == 5)
{
new killer[MAX_PLAYER_NAME];
GetPlayerName(killerid, killer, sizeof(killer));
format(string,128,"?%s [Grove Street] has killed %s [The Russian Mafia] and received 2500$.",killer,name);
SendBZMessage(COLOR_1GREEN, string);
format(string,128,"?%s [The Russian Mafia] was pwned by %s [Grove Street] and lost 2500$.",name,killer);
SendmfiMessage(COLOR_1BLUE, string);
GivePlayerMoney(killerid, 2500);
return 1;
}
}
if(PlayerInfo[killerid][pMember] == 12 || PlayerInfo[killerid][pLeader] == 12)
{
if(PlayerInfo[playerid][pMember] == 14 || PlayerInfo[playerid][pLeader] == 14)
{
new killer[MAX_PLAYER_NAME];
GetPlayerName(killerid, killer, sizeof(killer));
format(string,128,"?%s [Grove Street] has killed %s [Los Santos Vagos] and received 2500$.",killer,name);
SendBZMessage(COLOR_1GREEN, string);
format(string,128,"?%s [Los Santos Vagos] was pwned by %s [Grove Street] and lost 2500$.",name,killer);
SendNTMessage(COLOR_1BLUE, string);
GivePlayerMoney(killerid, 2500);
return 1;
}
}
if(PlayerInfo[killerid][pMember] == 13 || PlayerInfo[killerid][pLeader] == 13)
{
if(PlayerInfo[playerid][pMember] == 6 || PlayerInfo[playerid][pLeader] == 6)
{
new killer[MAX_PLAYER_NAME];
GetPlayerName(killerid, killer, sizeof(killer));
format(string,128,"?%s [Ballas] has killed %s [The Triads] and received 2500$.",killer,name);
SendCZMessage(COLOR_1GREEN, string);
format(string,128,"?%s [The Triads] was pwned by %s [Ballas] and lost 2500$.",name,killer);
SendthrMessage(COLOR_1BLUE, string);
GivePlayerMoney(killerid, 2500);
return 1;
}
}
if(PlayerInfo[killerid][pMember] == 13 || PlayerInfo[killerid][pLeader] == 13)
{
if(PlayerInfo[playerid][pMember] == 15 || PlayerInfo[playerid][pLeader] == 15)
{
new killer[MAX_PLAYER_NAME];
GetPlayerName(killerid, killer, sizeof(killer));
format(string,128,"?%s [Ballas] has killed %s [Varrios Los Aztecas] and received 2500$.",killer,name);
SendCZMessage(COLOR_1GREEN, string);
format(string,128,"?%s [Varrios Los Aztecas] was pwned by %s [Ballas] and lost 2500$.",name,killer);
SendSTMessage(COLOR_1BLUE, string);
GivePlayerMoney(killerid, 2500);
return 1;
}
}
if(PlayerInfo[killerid][pMember] == 14 || PlayerInfo[killerid][pLeader] == 14)
{
if(PlayerInfo[playerid][pMember] == 6 || PlayerInfo[playerid][pLeader] == 6)
{
new killer[MAX_PLAYER_NAME];
GetPlayerName(killerid, killer, sizeof(killer));
format(string,128,"?%s [Los Santos Vagos] has killed %s [The Triads] and received 2500$.",killer,name);
SendNTMessage(COLOR_1GREEN, string);
format(string,128,"?%s [The Triads] was pwned by %s [Los Santos Vagos] and lost 2500$.",name,killer);
SendthrMessage(COLOR_1BLUE, string);
GivePlayerMoney(killerid, 2500);
return 1;
}
}
if(PlayerInfo[killerid][pMember] == 14 || PlayerInfo[killerid][pLeader] == 14)
{
if(PlayerInfo[playerid][pMember] == 12 || PlayerInfo[playerid][pLeader] == 12)
{
new killer[MAX_PLAYER_NAME];
GetPlayerName(killerid, killer, sizeof(killer));
format(string,128,"?%s [Los Santos Vagos] has killed %s [Grove Street] and received 2500$.",killer,name);
SendNTMessage(COLOR_1GREEN, string);
format(string,128,"?%s [Grove Street] was pwned by %s [Los Santos Vagos] and lost 2500$.",name,killer);
SendBZMessage(COLOR_1BLUE, string);
GivePlayerMoney(killerid, 2500);
return 1;
}
}
if(PlayerInfo[killerid][pMember] == 15 || PlayerInfo[killerid][pLeader] == 15)
{
if(PlayerInfo[playerid][pMember] == 5 || PlayerInfo[playerid][pLeader] == 5)
{
new killer[MAX_PLAYER_NAME];
GetPlayerName(killerid, killer, sizeof(killer));
format(string,128,"?%s [Varrios Los Aztecas] has killed %s [The Russian Mafia] and received 2500$.",killer,name);
SendSTMessage(COLOR_1GREEN, string);
format(string,128,"?%s [The Russian Mafia] was pwned by %s [Varrios Los Aztecas] and lost 2500$.",name,killer);
SendmfiMessage(COLOR_1BLUE, string);
GivePlayerMoney(killerid, 2500);
return 1;
}
}
if(PlayerInfo[killerid][pMember] == 15 || PlayerInfo[killerid][pLeader] == 15)
{
if(PlayerInfo[playerid][pMember] == 13 || PlayerInfo[playerid][pLeader] == 13)
{
new killer[MAX_PLAYER_NAME];
GetPlayerName(killerid, killer, sizeof(killer));
format(string,128,"?%s [Varrios Los Aztecas] has killed %s [Ballas] and received 2500$.",killer,name);
SendSTMessage(COLOR_1GREEN, string);
format(string,128,"?%s [Ballas] was pwned by %s [Varrios Los Aztecas] and lost 2500$.",name,killer);
SendCZMessage(COLOR_1BLUE, string);
GivePlayerMoney(killerid, 2500);
return 1;
}
}
if(PlayerInfo[killerid][pMember] == 16 || PlayerInfo[killerid][pLeader] == 16)
{
if(PlayerInfo[playerid][pMember] == 6 || PlayerInfo[playerid][pLeader] == 6)
{
new killer[MAX_PLAYER_NAME];
GetPlayerName(killerid, killer, sizeof(killer));
format(string,128,"?%s [Da Nang Boys] has killed %s [The Triads] and received 2500$.",killer,name);
SendDNBMessage(COLOR_1GREEN, string);
format(string,128,"?%s [The Triads] was pwned by %s [Da Nang Boys] and lost 2500$.",name,killer);
SendthrMessage(COLOR_1BLUE, string);
GivePlayerMoney(killerid, 2500);
return 1;
}
}
if(PlayerInfo[killerid][pMember] == 6 || PlayerInfo[killerid][pLeader] == 6)
{
if(PlayerInfo[playerid][pMember] == 16 || PlayerInfo[playerid][pLeader] == 16)
{
new killer[MAX_PLAYER_NAME];
GetPlayerName(killerid, killer, sizeof(killer));
format(string,128,"?%s [The Triads] has killed %s [Da Nang Boys] and received 2500$.",killer,name);
SendthrMessage(COLOR_1GREEN, string);
format(string,128,"?%s [Da Nang Boys] was pwned by %s [The Triads] and lost 2500$.",name,killer);
SendDNBMessage(COLOR_1BLUE, string);
GivePlayerMoney(killerid, 2500);
return 1;
}
}
if(PlayerInfo[killerid][pMember] == 16 || PlayerInfo[killerid][pLeader] == 16)
{
if(PlayerInfo[playerid][pMember] == 12 || PlayerInfo[playerid][pLeader] == 12)
{
new killer[MAX_PLAYER_NAME];
GetPlayerName(killerid, killer, sizeof(killer));
format(string,128,"?%s [Da Nang Boys] has killed %s [Grove Street] and received 2500$.",killer,name);
SendDNBMessage(COLOR_1GREEN, string);
format(string,128,"?%s [Grove Street] was pwned by %s [Da Nang Boys] and lost 2500$.",name,killer);
SendBZMessage(COLOR_1BLUE, string);
GivePlayerMoney(killerid, 2500);
return 1;
}
}
if(PlayerInfo[killerid][pMember] == 12 || PlayerInfo[killerid][pLeader] == 12)
{
if(PlayerInfo[playerid][pMember] == 16 || PlayerInfo[playerid][pLeader] == 16)
{
new killer[MAX_PLAYER_NAME];
GetPlayerName(killerid, killer, sizeof(killer));
format(string,128,"?%s [Grove Street] has killed %s [Da Nang Boys] and received 2500$.",killer,name);
SendBZMessage(COLOR_1GREEN, string);
format(string,128,"?%s [Da Nang Boys] was pwned by %s [Grove Street] and lost 2500$.",name,killer);
SendDNBMessage(COLOR_1BLUE, string);
GivePlayerMoney(killerid, 2500);
return 1;
}
}
if(PlayerInfo[killerid][pMember] == 16 || PlayerInfo[killerid][pLeader] == 16)
{
if(PlayerInfo[playerid][pMember] == 15 || PlayerInfo[playerid][pLeader] == 15)
{
new killer[MAX_PLAYER_NAME];
GetPlayerName(killerid, killer, sizeof(killer));
format(string,128,"?%s [Da Nang Boys] has killed %s [Varrios Los Aztecas] and received 2500$.",killer,name);
SendDNBMessage(COLOR_1GREEN, string);
format(string,128,"?%s [Varrios Los Aztecas] was pwned by %s [Da Nang Boys] and lost 2500$.",name,killer);
SendSTMessage(COLOR_1BLUE, string);
GivePlayerMoney(killerid, 2500);
return 1;
}
}
if(PlayerInfo[killerid][pMember] == 15 || PlayerInfo[killerid][pLeader] == 15)
{
if(PlayerInfo[playerid][pMember] == 16 || PlayerInfo[playerid][pLeader] == 16)
{
new killer[MAX_PLAYER_NAME];
GetPlayerName(killerid, killer, sizeof(killer));
format(string,128,"?%s [Varrios Los Aztecas] has killed %s [Da Nang Boys] and received 2500$.",killer,name);
SendSTMessage(COLOR_1GREEN, string);
format(string,128,"?%s [Da Nang Boys] was pwned by %s [Varrios Los Aztecas] and lost 2500$.",name,killer);
SendDNBMessage(COLOR_1BLUE, string);
GivePlayerMoney(killerid, 2500);
return 1;
}
}
if(PlayerInfo[killerid][pMember] == 17 || PlayerInfo[killerid][pLeader] == 17)
{
if(PlayerInfo[playerid][pMember] == 5 || PlayerInfo[playerid][pLeader] == 5)
{
new killer[MAX_PLAYER_NAME];
GetPlayerName(killerid, killer, sizeof(killer));
format(string,128,"?%s [San Fierro Rifa] has killed %s [The Russian Mafia] and received 2500$.",killer,name);
SendLVCMessage(COLOR_1GREEN, string);
format(string,128,"?%s [The Russian Mafia] was pwned by %s [San Fierro Rifa] and lost 2500$.",name,killer);
SendmfiMessage(COLOR_1BLUE, string);
GivePlayerMoney(killerid, 2500);
return 1;
}
}
if(PlayerInfo[killerid][pMember] == 5 || PlayerInfo[killerid][pLeader] == 5)
{
if(PlayerInfo[playerid][pMember] == 17 || PlayerInfo[playerid][pLeader] == 17)
{
new killer[MAX_PLAYER_NAME];
GetPlayerName(killerid, killer, sizeof(killer));
format(string,128,"?%s [The Russian Mafia] has killed %s [San Fierro Rifa] and received 2500$.",killer,name);
SendmfiMessage(COLOR_1GREEN, string);
format(string,128,"?%s [San Fierro Rifa] was pwned by %s [The Russian Mafia] and lost 2500$.",name,killer);
SendLVCMessage(COLOR_1BLUE, string);
GivePlayerMoney(killerid, 2500);
return 1;
}
}
if(PlayerInfo[killerid][pMember] == 17 || PlayerInfo[killerid][pLeader] == 17)
{
if(PlayerInfo[playerid][pMember] == 13 || PlayerInfo[playerid][pLeader] == 13)
{
new killer[MAX_PLAYER_NAME];
GetPlayerName(killerid, killer, sizeof(killer));
format(string,128,"?%s [San Fierro Rifa] has killed %s [Ballas] and received 2500$.",killer,name);
SendLVCMessage(COLOR_1GREEN, string);
format(string,128,"?%s [Ballas] was pwned by %s [San Fierro Rifa] and lost 2500$.",name,killer);
SendCZMessage(COLOR_1BLUE, string);
GivePlayerMoney(killerid, 2500);
return 1;
}
}
if(PlayerInfo[killerid][pMember] == 13 || PlayerInfo[killerid][pLeader] == 13)
{
if(PlayerInfo[playerid][pMember] == 17 || PlayerInfo[playerid][pLeader] == 17)
{
new killer[MAX_PLAYER_NAME];
GetPlayerName(killerid, killer, sizeof(killer));
format(string,128,"?%s [Ballas] has killed %s [San Fierro Rifa] and received 2500$.",killer,name);
SendCZMessage(COLOR_1GREEN, string);
format(string,128,"?%s [San Fierro Rifa] was pwned by %s [Ballas] and lost 2500$.",name,killer);
SendLVCMessage(COLOR_1BLUE, string);
GivePlayerMoney(killerid, 2500);
return 1;
}
}
if(PlayerInfo[killerid][pMember] == 17 || PlayerInfo[killerid][pLeader] == 17)
{
if(PlayerInfo[playerid][pMember] == 14 || PlayerInfo[playerid][pLeader] == 14)
{
new killer[MAX_PLAYER_NAME];
GetPlayerName(killerid, killer, sizeof(killer));
format(string,128,"?%s [San Fierro Rifa] has killed %s [Los Santos Vagos] and received 2500$.",killer,name);
SendLVCMessage(COLOR_1GREEN, string);
format(string,128,"?%s [Los Santos Vagos] was pwned by %s [San Fierro Rifa] and lost 2500$.",name,killer);
SendNTMessage(COLOR_1BLUE, string);
GivePlayerMoney(killerid, 2500);
return 1;
}
}
if(PlayerInfo[killerid][pMember] == 14 || PlayerInfo[killerid][pLeader] == 14)
{
if(PlayerInfo[playerid][pMember] == 17 || PlayerInfo[playerid][pLeader] == 17)
{
new killer[MAX_PLAYER_NAME];
GetPlayerName(killerid, killer, sizeof(killer));
format(string,128,"?%s [Los Santos Vagos] has killed %s [San Fierro Rifa] and received 2500$.",killer,name);
SendNTMessage(COLOR_1GREEN, string);
format(string,128,"?%s [San Fierro Rifa] was pwned by %s [Los Santos Vagos] and lost 2500$.",name,killer);
SendLVCMessage(COLOR_1BLUE, string);
GivePlayerMoney(killerid, 2500);
return 1;
}
}
if(PlayerInfo[killerid][pMember] == 17 || PlayerInfo[killerid][pLeader] == 17)
{
if(PlayerInfo[playerid][pMember] == 16 || PlayerInfo[playerid][pLeader] == 16)
{
new killer[MAX_PLAYER_NAME];
GetPlayerName(killerid, killer, sizeof(killer));
format(string,128,"?%s [San Fierro Rifa] has killed %s [Da Nang Boys] and received 2500$.",killer,name);
SendLVCMessage(COLOR_1GREEN, string);
format(string,128,"?%s [Da Nang Boys] was pwned by %s [San Fierro Rifa] and lost 2500$.",name,killer);
SendDNBMessage(COLOR_1BLUE, string);
GivePlayerMoney(killerid, 2500);
return 1;
}
}
if(PlayerInfo[killerid][pMember] == 16 || PlayerInfo[killerid][pLeader] == 16)
{
if(PlayerInfo[playerid][pMember] == 17 || PlayerInfo[playerid][pLeader] == 17)
{
new killer[MAX_PLAYER_NAME];
GetPlayerName(killerid, killer, sizeof(killer));
format(string,128,"?%s [Da Nang Boys] has killed %s [San Fierro Rifa] and received 2500$.",killer,name);
SendDNBMessage(COLOR_1GREEN, string);
format(string,128,"?%s [San Fierro Rifa] was pwned by %s [Da Nang Boys] and lost 2500$.",name,killer);
SendLVCMessage(COLOR_1BLUE, string);
GivePlayerMoney(killerid, 2500);
return 1;
}
}
}
if (victimteam >= 3 && WantedPoints[playerid] > 0 && killerteam == 2)
{
SetPlayerFree(playerid,killerid, "Got Killed");
}

if(takezone == 1 && WarInfo[pWarOn] == 0)
{
if(PlayerInfo[killerid][pLeader] == 12 || PlayerInfo[killerid][pMember] == 12)
{
if(PlayerInfo[playerid][pLeader] == 12 || PlayerInfo[playerid][pMember] == 12)
{
for(new z=0; z<sizeof(ZoneInfo); z++)
{
if(ZoneInfo[z][zTakeOn] == 1 && bllsvsgst == 1 || lsvvsgst == 1 || vlavsgst == 1)
{
new killer[MAX_PLAYER_NAME];
GetPlayerName(killerid, killer, sizeof(killer));
format(string,128," {A8E87D}** %s GST has killed %s GST and lost 1 point.",killer,name);

}
}
SendBZMessage(-1,string);scoreteamgst -= 1;
}
}
if(PlayerInfo[killerid][pLeader] == 13 || PlayerInfo[killerid][pMember] == 13)
{
if(PlayerInfo[playerid][pLeader] == 13 || PlayerInfo[playerid][pMember] == 13)
{
for(new z=0; z<sizeof(ZoneInfo); z++)
{
if(ZoneInfo[z][zTakeOn] == 1 && bllsvsgst == 1 || lsvvsblls == 1 || vlavsblls == 1)
{
new killer[MAX_PLAYER_NAME];
GetPlayerName(killerid, killer, sizeof(killer));
format(string,128," {D67DE8}** %s Ballas has killed %s Ballas and lost 1 point.",killer,name);
}
}
SendCZMessage(-1,string); scoreteamblls -= 1;
}
}
if(PlayerInfo[killerid][pLeader] == 14 || PlayerInfo[killerid][pMember] == 14)
{
if(PlayerInfo[playerid][pLeader] == 14 || PlayerInfo[playerid][pMember] == 14)
{
for(new z=0; z<sizeof(ZoneInfo); z++)
{
if(ZoneInfo[z][zTakeOn] == 1 && lsvvsblls == 1 || lsvvsgst == 1 || vlavslsv == 1)
{
new killer[MAX_PLAYER_NAME];
GetPlayerName(killerid, killer, sizeof(killer));
format(string,128," {E8DC7D}** %s LSV has killed %s LSV and lost 1 point.",killer,name);

}
}
SendNTMessage(-1,string); scoreteamlsv -= 1;
}
}
if(PlayerInfo[killerid][pLeader] == 15 || PlayerInfo[killerid][pMember] == 15)
{
if(PlayerInfo[playerid][pLeader] == 15 || PlayerInfo[playerid][pMember] == 15)
{
for(new z=0; z<sizeof(ZoneInfo); z++)
{
if(ZoneInfo[z][zTakeOn] == 1 && vlavsblls == 1 || vlavslsv == 1 || vlavsgst == 1)
{
new killer[MAX_PLAYER_NAME];
GetPlayerName(killerid, killer, sizeof(killer));
format(string,128," {97F7F7}** %s VLA has killed %s VLA and lost 1 point.",killer,name);

}
}
SendSTMessage(-1,string);scoreteamvla -= 1;
}
}





The problem is from public onplayerdeath, I left your codes here.
Reply
#4

Help please.
Reply
#5

I suggest you take that wall of code from your previous reply, and upload it to something like Pastebin. Probably no-one is going to read unformatted, raw code from a forum reply. You can even select PAWN syntax highlighting on Pastebin, which makes it even easier to read.

You might want to replace the code from your reply with a link to the paste too, I suspect plenty of people are going to click away the thread when confronted with such a long scroll.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)