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

EE Help

HOT
broken avatar :(
Created 9 years ago
by elichvatal
0 Members and 1 Guest are viewing this topic.
5,980 views
broken avatar :(
×
broken avatar :(
Location: us
Date Registered: 28 August 2013
Last active: 6 years ago
Posts
70
Respect
Forum Rank
Rotting Walker
Primary Group
Member
Signature
Mr.Waddelboy22
×
elichvatal's Groups
elichvatal's Contact & Social Links
So i was planning on  making a map that is going to be built in a ridiculous amount (Possible 1 hour and 15 minutes)  of time so i wanted to gather some info  before i start the timer. so how would i make a simple ee where you just find 3 perk bottles and then you get all perks. just something really simple to add some sort of challenge or objective to the map. Any help would be awesome, thanks. :nyan: :nyan: :nyan: :nyan: :nyan: :nyan: :nyan:
broken avatar :(
×
broken avatar :(
[UGX] Documentation Writer & Programmer
Location: usLos Angeles, CA
Date Registered: 23 August 2013
Last active: 6 months ago
Posts
1,322
Respect
Forum Rank
Zombie Colossus
Primary Group
UGX Team Member
My Groups
More
My Contact & Social Links
More
Personal Quote
(ง º ω º )ง u wont sum m8y?
Signature
Do not take life too seriously. You will never get out of it alive.
×
DidUknowiPwn's Groups
UGX Team Member
Donator ♥ Benevolent Soul who has our eternal gratitude and exclusive access to betas and the donator section of the forum.
Community Scripter Elite Has shown excellence and experience in the area of custom scripting in the UGX-Mods community.
BO3 Modtools Alpha
BO3 Modtools Alpha
This user has access to the Black Ops 3 Modtools Alpha
Put a script_model in radiant give it a targetname of something like "ee_cookies"
In a script (load this in your map.gsc from around the main call) do this:
Code Snippet
Plaintext
init()
{
level.ee_cookies_shot = 0;
bottles = GetEntArray("ee_cookies", "targetname");
array_thread(bottles, ::dankMemes);
}
dankMemes()
{
self SetCanDamage(true);
self waittill("damage");
IPrintLnBold("I've been shot and I can't get up!");
level.ee_cookies_shot++;
if(level.ee_cookies_shot == 3) //dankest memes
doOtherDankness();
}
doOtherDankness()
{
players = get_players();
for(i = 0;i < players.size; i++)
players[i] setDankPerks();
}
setDankPerks()
{
perk = [];
perk[0] = "specialty_armorvest"; //iirc this is juggs perk name
perk[1] = "specialty_dank"; //not actual perk name
for(i = 0; i < perk.size; i++)
{
player SetPerk(perk[i]);
player perk_hud_create( perk );
player.stats["perks"]++;
player thread perk_think( perk );
}
}
I didn't space it out because I'm lazy.
Last Edit: July 14, 2015, 05:17:06 am by DidUknowiPwn
broken avatar :(
×
broken avatar :(
Senpai
Location: us
Date Registered: 28 September 2013
Last active: 3 years ago
Posts
605
Respect
Forum Rank
Zombie Enslaver
Primary Group
Box Mappers Elite
My Groups
More
My Contact & Social Links
More
×
arceus's Groups
Box Mappers Elite
Box Mappers Elite
arceus's Contact & Social LinksarceusNT
Code Snippet
Plaintext
init()
{
level.ee_cookies_shot = 0;
bottles = GetEntArray("ee_cookies", "targetname");
array_thread(bottles, ::dankMemes);
}

dankMemes()
{
self SetCanDamage(true);
self waittill("damage");
IPrintLnBold("I've been shot and I can't get up!");
level.ee_cookies_shot++;

if(level.ee_cookies_shot == 3) //dankest memes
doOtherDankness();
}

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

setDankPerks()
{
perk = [];
perk[0] = "specialty_armorvest"; //iirc this is juggs perk name
perk[1] = "specialty_dank"; //not actual perk name
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 );
}
}

i couldn't help myself :poker:
broken avatar :(
×
broken avatar :(
Location: us
Date Registered: 28 August 2013
Last active: 6 years ago
Posts
70
Respect
Forum Rank
Rotting Walker
Primary Group
Member
×
elichvatal's Groups
elichvatal's Contact & Social Links
Thanks tested and works :D Edit: whenever i launch i says unintilized variable 'player' any help
Last Edit: July 16, 2015, 11:53:31 pm by elichvatal
broken avatar :(
×
broken avatar :(
Location: us
Date Registered: 2 April 2014
Last active: 2 years ago
Posts
481
Respect
Forum Rank
Perk Hacker
Primary Group
Donator ♥
My Groups
More
My Contact & Social Links
More
Personal Quote
If it's not perfect, you'll never see it.
Signature
Learn by doing, not copy and pasting.

Enjoy my 2015 contest map, a simple map with bo1-bo2 features
http://ugx-mods.com/forum/index.php?topic=14968.msg149200#
×
Centric's Groups
Donator ♥ Benevolent Soul who has our eternal gratitude and exclusive access to betas and the donator section of the forum.
Centric's Contact & Social Linkscentricccentric_
Thanks tested and works :D Edit: whenever i launch i says unintilized variable 'player' any help

In other words... It didn't work?
broken avatar :(
×
broken avatar :(
[UGX] Documentation Writer & Programmer
Location: usLos Angeles, CA
Date Registered: 23 August 2013
Last active: 6 months ago
Posts
1,322
Respect
Forum Rank
Zombie Colossus
Primary Group
UGX Team Member
My Groups
More
My Contact & Social Links
More
Personal Quote
(ง º ω º )ง u wont sum m8y?
×
DidUknowiPwn's Groups
UGX Team Member
Donator ♥ Benevolent Soul who has our eternal gratitude and exclusive access to betas and the donator section of the forum.
Community Scripter Elite Has shown excellence and experience in the area of custom scripting in the UGX-Mods community.
BO3 Modtools Alpha
BO3 Modtools Alpha
This user has access to the Black Ops 3 Modtools Alpha
Thanks tested and works :D Edit: whenever i launch i says unintilized variable 'player' any help
Replace player in setDankPerks with self woops  :derp:
broken avatar :(
×
broken avatar :(
Location: us
Date Registered: 10 October 2013
Last active: 3 months ago
Posts
541
Respect
Forum Rank
Zombie Enslaver
Primary Group
Donator ♥
My Groups
More
My Contact & Social Links
More
×
ProGamerzFTW's Groups
Donator ♥ Benevolent Soul who has our eternal gratitude and exclusive access to betas and the donator section of the forum.
Thanks tested and works :D Edit: whenever i launch i says unintilized variable 'player' any help

Did you say it works before you even tested it?  :poker:
broken avatar :(
×
broken avatar :(
Location: us
Date Registered: 27 January 2015
Last active: 7 years ago
Posts
337
Respect
Forum Rank
Perk Hacker
Primary Group
Member
Signature
×
liamsa669's Groups
liamsa669's Contact & Social Links
lol that moment when DidUknowiPwn makes a mistake
Last Edit: July 17, 2015, 12:54:32 pm by liamsa669
broken avatar :(
×
broken avatar :(
[UGX] Documentation Writer & Programmer
Location: usLos Angeles, CA
Date Registered: 23 August 2013
Last active: 6 months ago
Posts
1,322
Respect
Forum Rank
Zombie Colossus
Primary Group
UGX Team Member
My Groups
More
My Contact & Social Links
More
Personal Quote
(ง º ω º )ง u wont sum m8y?
×
DidUknowiPwn's Groups
UGX Team Member
Donator ♥ Benevolent Soul who has our eternal gratitude and exclusive access to betas and the donator section of the forum.
Community Scripter Elite Has shown excellence and experience in the area of custom scripting in the UGX-Mods community.
BO3 Modtools Alpha
BO3 Modtools Alpha
This user has access to the Black Ops 3 Modtools Alpha
lol that moment when DidUknowiPwn makes a mistake
Check my livestream i did last night made plenty of mistakes ;)

You can't be perfect :D
broken avatar :(
  • steviewonder87
  • Deleted Member
×
broken avatar :(
steviewonder87
This user is deleted :(
So i was planning on  making a map that is going to be built in a ridiculous amount (Possible 1 hour and 15 minutes) of time
Why?? :-\
broken avatar :(
×
broken avatar :(
Location: us
Date Registered: 14 September 2013
Last active: 4 years ago
Posts
1,895
Respect
Forum Rank
Zombie Destroyer
Primary Group
Community Scripter
My Groups
More
My Contact & Social Links
More
Personal Quote
BE ORIGINAL
Signature
×
MakeCents's Groups
Community Mapper Has released one or more maps to the UGX-Mods community which have been added to the UGX Map Manager.
Community Scripter Has shown effort and knowledge in the area of scripting while being a part of the UGX-Mods community.
BO3 Modtools Alpha
BO3 Modtools Alpha
This user has access to the Black Ops 3 Modtools Alpha
Why?? :-\

I can think of plenty of reasons why:

 - We have about an hour and 15 minutes before Mom comes home.
 - The cops will be here in about an hour and 15 minutes
 - School don't start for another hour and 15 minutes
 - I have two 45 minute study halls, but I have to study (go to bathroom) for about 15 minutes
 - I've found value in speed mapping over the need for quality
 - Cause "Ain't nobody got time for that".
 - I get 15 minutes of pc time a month, so this will actually take me 5 months.
 - Everybody's doing it.
 - Cause it's Friday, and I ain't got shit to do. (for an hour and 15 minutes)
 - I just said and hour and 15 minutes to start some shit with stevie
 - This message will self destruct, in an hour and 15 minutes.


 :D Just playing
Last Edit: July 17, 2015, 05:04:19 pm by MakeCents
broken avatar :(
×
broken avatar :(
Location: fi
Date Registered: 25 June 2013
Last active: 8 months ago
Posts
3,997
Respect
1,024Add +1
Forum Rank
Eviscerator
Primary Group
UGX V.I.P.
My Groups
More
My Contact & Social Links
More
×
HitmanVere's Groups
Donator ♥ Benevolent Soul who has our eternal gratitude and exclusive access to betas and the donator section of the forum.
UGX V.I.P.
UGX V.I.P.
Community Mapper Has released one or more maps to the UGX-Mods community which have been added to the UGX Map Manager.
BO3 Modtools Alpha
BO3 Modtools Alpha
This user has access to the Black Ops 3 Modtools Alpha
I can think of plenty of reasons why:

 - We have about an hour and 15 minutes before Mom comes home.
 - The cops will be here in about an hour and 15 minutes
 - School don't start for another hour and 15 minutes
 - I have two 45 minute study halls, but I have to study (go to bathroom) for about 15 minutes
 - I've found value in speed mapping over the need for quality
 - Cause "Ain't nobody got time for that".
 - I get 15 minutes of pc time a month, so this will actually take me 5 months.
 - Everybody's doing it.
 - Cause it's Friday, and I ain't got shit to do. (for an hour and 15 minutes)
 - I just said and hour and 15 minutes to start some shit with stevie
 - This message will self destruct, in an hour and 15 minutes.


 :D Just playing

broken avatar :(
×
broken avatar :(
Location: us
Date Registered: 27 January 2015
Last active: 7 years ago
Posts
337
Respect
Forum Rank
Perk Hacker
Primary Group
Member
×
liamsa669's Groups
liamsa669's Contact & Social Links
Check my livestream i did last night made plenty of mistakes ;)

You can't be perfect :D
You cant be perfect... If i tried, i can -_-
broken avatar :(
×
broken avatar :(
Location: us
Date Registered: 2 April 2014
Last active: 2 years ago
Posts
481
Respect
Forum Rank
Perk Hacker
Primary Group
Donator ♥
My Groups
More
My Contact & Social Links
More
Personal Quote
If it's not perfect, you'll never see it.
×
Centric's Groups
Donator ♥ Benevolent Soul who has our eternal gratitude and exclusive access to betas and the donator section of the forum.
Centric's Contact & Social Linkscentricccentric_
You cant be perfect... If i tried, i can -_-

You must not try to hard considering you've deleted your account multiple times. Not so perfect.
broken avatar :(
×
broken avatar :(
Location: us
Date Registered: 27 January 2015
Last active: 7 years ago
Posts
337
Respect
Forum Rank
Perk Hacker
Primary Group
Member
×
liamsa669's Groups
liamsa669's Contact & Social Links
You must not try to hard considering you've deleted your account multiple times. Not so perfect.
:troll: ask my teachers -_- if u think thats bad... they can supply you with worse

 
Loading ...