Skocz do zawartości

Witamy w Nieoficjalnym polskim support'cie AMX Mod X

Witamy w Nieoficjalnym polskim support'cie AMX Mod X, jak w większości społeczności internetowych musisz się zarejestrować aby móc odpowiadać lub zakładać nowe tematy, ale nie bój się to jest prosty proces w którym wymagamy minimalnych informacji.
  • Rozpoczynaj nowe tematy i odpowiedaj na inne
  • Zapisz się do tematów i for, aby otrzymywać automatyczne uaktualnienia
  • Dodawaj wydarzenia do kalendarza społecznościowego
  • Stwórz swój własny profil i zdobywaj nowych znajomych
  • Zdobywaj nowe doświadczenia

Dołączona grafika Dołączona grafika

Guest Message by DevFuse
 

kamilos3311 - zdjęcie

kamilos3311

Rejestracja: 11.05.2011
Aktualnie: Nieaktywny
Poza forum Ostatnio: 07.09.2021 12:26
-----

Moje posty

W temacie: Dodanie broni do rangi

06.03.2014 23:02

Pozmieniaj sobie  weapon_usp na odpowiednie bronie do rangi.

if ( stats[0] >= 0 && stats[0] <= 29)
{format(ranga,29,"Poczatkujacy")
give_item(id, "weapon_usp")
}

 else if ( stats[0] >= 31 && stats[0] <= 60)
{
format(ranga,29,"Bywalec")
give_item(id, "weapon_usp")
} 

else if ( stats[0] >= 61 && stats[0] <= 120)
{
format(ranga,29,"Staly Bywalec")
give_item(id, "weapon_usp")
} 

else if ( stats[0] >= 121 && stats[0] <= 250)
{
format(ranga,29,"Surfer")
give_item(id, "weapon_usp")
} 

else if ( stats[0] >= 251 && stats[0] <= 500)
{
format(ranga,29,"Mistrz Surfowania")
give_item(id, "weapon_usp")
} 

else if ( stats[0] >= 501 && stats[0] <= 700)
{
format(ranga,29,"Kox")
give_item(id, "weapon_usp")
} 

else if ( stats[0] >= 701 && stats[0] <= 1000)
{
format(ranga,29,"Kozak")
give_item(id, "weapon_usp")
} 
else if ( stats[0] >= 1001 && stats[0] <= 1250)
{
format(ranga,29,"Mistrzunio")
give_item(id, "weapon_usp")
}

else if ( stats[0] >= 1251 && stats[0] <= 1700)
{
format(ranga,29,"Pogromca")
give_item(id, "weapon_usp")
}

else if ( stats[0] >= 1701 && stats[0] <= 2000)
{
format(ranga,29,"Niszczyciel")
give_item(id, "weapon_usp")
}
else if ( stats[0] >= 2001 && stats[0] <= 2500)
{
format(ranga,29,"Terminator")
give_item(id, "weapon_usp")
}

else if ( stats[0] >= 2501 && stats[0] <= 3000)
{
format(ranga,29,"Joker")
give_item(id, "weapon_usp")
}

else if ( stats[0] >= 3001 && stats[0] <= 3500)
{
format(ranga,29,"Morfeusz")
give_item(id, "weapon_usp")
}

else if ( stats[0] >= 3501 && stats[0] <= 4000)
{
format(ranga,29,"Wybraniec")
give_item(id, "weapon_usp")
}

else if ( stats[0] >= 4001 && stats[0] <= 4500)
{
format(ranga,29,"Killer")
give_item(id, "weapon_usp")
}

else if ( stats[0] >= 4501 && stats[0] <=5000)
{
format(ranga,29,"Multi Killer")
give_item(id, "weapon_usp")
}

else if ( stats[0] >= 5001 && stats[0] <= 7000)
{
format(ranga,29,"Owner")
give_item(id, "weapon_usp")
}

else if ( stats[0] >= 7001 && stats[0] <= 9000)
{
format(ranga,29,"Cziter")
give_item(id, "weapon_usp")
}

else if ( stats[0] >= 9001 && stats[0] <= 10999)
{
format(ranga,29,"Wymiatacz")
give_item(id, "weapon_usp")
}

else if ( stats[0] >= 11000 )
{
format(ranga,29,"Rozkurwiacz")
give_item(id, "weapon_usp")
}