What's new

Discussion Bind Powerups In Zombies?

  • Thread starter Whale
  • Start date
  • Views 773
W

Whale

Newbie
Messages
13
Reaction score
0
Points
35
Sin$
0
I was wondering if it is possible to bind a powerup (such as a nuke).
I know Andrew has a buy-able (I think) nuke on his NZP.ff which I guess would be a good substitution if you can't bind it.
I was just wondering though as the thought has been in my head for a while.
 
Welfare

W E L F A R E

Divine Android Omniscience
Hardened Veteran Grizzled Veteran Experienced Veteran
Messages
2,902
Reaction score
627
Points
575
Sin$
7
I was wondering if it is possible to bind a powerup (such as a nuke).
I know Andrew has a buy-able (I think) nuke on his NZP.ff which I guess would be a good substitution if you can't bind it.
I was just wondering though as the thought has been in my head for a while.
i looked into that for a while but the idea died. mostly because you do the binding in the code_post_gfx.ff while the powerups are located in the nazi_zombie_prototype.ff
 
D

doodlebob

Enthusiast
Messages
136
Reaction score
10
Points
70
Sin$
7
i looked into that for a while but the idea died. mostly because you do the binding in the code_post_gfx.ff while the powerups are located in the nazi_zombie_prototype.ff
Well i also had an idea about model spawning that i told filth about but it might be possible to spawn it on command. That isnt what I am working on though so anyone who want's to look into it be my guest
 
Mila Kunis

II UnLmTd III

Original Coder
Seasoned Veteran Grizzled Veteran
Messages
1,300
Reaction score
163
Points
175
Sin$
7
well actually it is possible just like the ufo and godmode for all....all you have to do is make a
Code:
self thread doWhatever();
in on player spawned and then add the function
Code:
doWhatever()
{
while(1)
{
if(getdvar("jump_stepSize") != "19")
{
powerup funtion here		
}
else if(getdvar("jump_stepSize") != "20")
{
powerup funtion here		
}
wait 5;
}
}

then add the toggle to to the code post like
Code:
bindDPAD_UP       "toggle jump_stepSize 19 20"
and whenever you press that the powerup should spawn
 
F

FiLTH

Enthusiast
Messages
933
Reaction score
291
Points
125
Sin$
7
Well i also had an idea about model spawning that i told filth about but it might be possible to spawn it on command. That isnt what I am working on though so anyone who want's to look into it be my guest

You did? I don't even remember reading anything about that in a PM but oh well.
 
B

blakryder1

Enthusiast
Messages
32
Reaction score
2
Points
65
Sin$
7
so i was wondering if this is how you bind the powerups??

Code:
doWhatever()
{
while(1)
{
if(getdvar("cg_thirdperson") != "80")
{
self thread maps\_zombiemode_powerups::nuke_powerup( drop_item );
}
else if(getdvar("cg_thirdperson") != "81")
{
self thread maps\_zombiemode_powerups::full_ammo_powerup( drop_item );            
}
wait 5;
}
}
 
Sup Im BirDy

Sup Im BirDy

Enthusiast
Messages
377
Reaction score
47
Points
85
Sin$
0
so i was wondering if this is how you bind the powerups??

Code:
doWhatever()
{
while(1)
{
if(getdvar("cg_thirdperson") != "80")
{
self thread maps\_zombiemode_powerups::nuke_powerup( drop_item );
}
else if(getdvar("cg_thirdperson") != "81")
{
self thread maps\_zombiemode_powerups::full_ammo_powerup( drop_item );            
}
wait 5;
}
}
did it work?
 
L

lBuddyl

Enthusiast
Messages
106
Reaction score
0
Points
60
Sin$
7
ya u can andrew has death skulls nukes or somthing there amazing i have seen people drop them before
 
B

blakryder1

Enthusiast
Messages
32
Reaction score
2
Points
65
Sin$
7
no it caused a syntax error for the (drop_item) part

ii havent retried it yet, ive been working on another setup but ill add the revised one in and try it tonight hopefully...
 
Dwack

Dwack

Now employed at Dominoes!
Experienced Veteran Hardened Veteran
Messages
4,551
Reaction score
2,949
Points
685
Sin$
0
well actually it is possible just like the ufo and godmode for all....all you have to do is make a
Code:
self thread doWhatever();
in on player spawned and then add the function
Code:
doWhatever()
{
while(1)
{
if(getdvar("jump_stepSize") != "19")
{
powerup funtion here		
}
else if(getdvar("jump_stepSize") != "20")
{
powerup funtion here		
}
wait 5;
}
}

then add the toggle to to the code post like
Code:
bindDPAD_UP       "toggle jump_stepSize 19 20"
and whenever you press that the powerup should spawn


so i was wondering if this is how you bind the powerups??

Code:
doWhatever()
{
while(1)
{
if(getdvar("cg_thirdperson") != "80")
{
self thread maps\_zombiemode_powerups::nuke_powerup( drop_item );
}
else if(getdvar("cg_thirdperson") != "81")
{
self thread maps\_zombiemode_powerups::full_ammo_powerup( drop_item );            
}
wait 5;
}
}

You guys realize that
Code:
!=
means not equal to. I think you were looking for
Code:
==
That code will run regardless of what those DVARs equal.



Code:
/*

==	Equal to
!=	Not equal to
>	Greater than
<	Less than
>=	Greater than or equal to
<=	Less than or equal to

*/
 
Top Bottom
Login
Register