UGX-Mods Login

or login with an authentication provider below
Sign In with Google
Sign In with Twitter
Sign In with Discord
Sign In with Steam
Sign In with Facebook
Sign In with Twitch

Looking for Help

broken avatar :(
Created 6 years ago
by gustoman
0 Members and 1 Guest are viewing this topic.
1,230 views
broken avatar :(
×
broken avatar :(
Location: ca
Date Registered: 21 November 2016
Last active: 2 years ago
Posts
117
Respect
Forum Rank
Pack-a-Puncher
Primary Group
Member
My Contact & Social Links
More
Personal Quote
I make maps.
Signature
THE FIGHT
SALAJ_DUST2 new update is coming soon
SALAJ_MALEFIC'S_SPAWN
SALAJ_WWE coming soon
×
gustoman's Groups
gustoman's Contact & Social Linksgustoman
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.
broken avatar :(
×
broken avatar :(
Location: br
Date Registered: 7 May 2015
Last active: 1 month ago
Posts
312
Respect
Forum Rank
Perk Hacker
Primary Group
Member
My Contact & Social Links
More
Signature
×
EmpGeneral's Groups
EmpGeneral's Contact & Social LinksldraweEletricStorm
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.

Perk drop:https://www.ugx-mods.com/forum/index.php/topic,5796.0.html

PAP powerup would be something like this(It wasn't me who made this script,just found it)

Code Snippet
Plaintext
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);
}

 
Loading ...