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

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Topics - MrStealYourGrill

Scavenger Mod V1.0
This mod is super simple and mostly intended for beginners who want to add something to their map and dont have the skill quite yet to actually do it. Did this because I am currently working on a map(But have an idea) and had some scavenger script laying around so why not! :D
Includes the Following          Includes the Following         Includes the Following          Includes the Following          Includes the Following         Includes the Following          Includes the Following          Includes the Following         Includes the Following
Spoiler: click to open...
Scavenger
Scavenger PAP Version
Pro Revenge Perk Shaders(Because Why Not :P)
This doesn't take out any other weapon so you'll be low on fx and sfx(That's why it's intended for beginners).
Pictures
Spoiler: click to open...



Download

Credit to
Rorke: Script
ProRevenge:Perkshaders

BTW,
If you do get a error download harryboy22's 400 FX fix and should work beautifully :D
9 years ago
so i was doin a map with a simple ee where you collect 3 teddy bears and you get all perks. a simple script but imma usin harrybos perks so i dont know what to add where the script changes and so on. my script im usin is


Code Snippet
Plaintext
init()
{
level.perk_cookies_shot = 0;
bottles = GetEntArray("perk_cookies", "targetname");
array_thread(bottles, ::dankMemes);
}

dankMemes()
{
self SetCanDamage(true);
self waittill("damage");
IPrintLnBold("You Found a Something!, Probably.");
level.perk_cookies_shot++;

if(level.perk_cookies_shot == 3)
doOtherDankness();
}

doOtherDankness()
{
players = get_players();
for(i = 0;i < players.size; i++)
self[i] setDankPerks();
}

setDankPerks()
{
perk = [];
perk[0] = "specialty_armorvest";
perk[1] = "specialty_dank";
for(i = 0; i < perk.size; i++)
{
player SetPerk(perk[i]);
player maps\_zombiemode_perks::perk_hud_create( perk );
player.stats["perks"]++;
player thread maps\_zombiemode_perks::perk_think( perk );
}
}




script model targetname is perk_cookies
Callin it in zombiemode.gsc        maps\_zombiemode_perk_cookies::init();
And maby this would work just the way it is? IDK any help would be awesome ;)



credit for this script goes to diduknowipwn, took offa his script and edited it

Moderator edit - HarryBo21 - removed the "Y" everyone seems to put in my name lol its Harry-Bo, a respelling of the common English sweets "Harribo" ;)
9 years ago
Loading ...