
Posts
117
Respect
48Add +1
Forum Rank
Pack-a-Puncher
Primary Group
Member
Login Issues
Forgot password?Activate Issues
Account activation email not received? Wrong account activation email used?Other Problems?
Contact Support - Help Center Get help on the UGX Discord. Join it now!I am looking for script "perks and pap drops" when u kill zombie u can get drop like perk or pap same as bomb or insta-kill. If anyone have it please share it with me.
Also im looking for someone who would change players and zombies models for me.
You will be credited.
pap_powerup()
{
//ensure the player is valid
if(!is_player_valid(self))
{
return;
}
currentWeapon = self GetCurrentWeapon();
//ensure current weapon exists, its not a grenade and that its not already upgraded
if(!isDefined(currentWeapon) || getWeaponType(currentWeapon) == "grenade" || isSubStr(currentWeapon, "upgraded"))
{
return;
}
//make the weapon upgraded
upgradeWeapon += "_upgraded";
//take the current weapon and give the upgraded one
self takeWeapon(currentWeapon);
self giveWeapon(upgradeWeapon);
self switchTo(upgradeWeapon);
}