[Help] Some other codes/help

Posts 16 of 6 · Page 1 of 1
[Help] Some other codes/help
Hey guys again....

So I need a few codes
I'd like if some1 would tell them
Its about these code(s):

- When game starts after 20,19..... 2,1, I want all players to die after 2 seconds.

Problems:
My killstreaks do not work.
I put this code in onPlayerSpawned():
Code:
self setPlayerData( "killstreaks", 0, "uav" );
self setPlayerData( "killstreaks", 1, "counter_uav" );
self setPlayerData( "killstreaks", 2, "predator_missile" );
I can get the streaks but i cant activate them... Some1 knows how to fix it?

Soo. If some1 knows this please help

Greetz,
Mr.Mackey
Mmmkay?
Extract a _gamelogic.gsc out of common_mp.ff and search for
Code:
matchStartText destroyElem();
UNDER this you add
Code:
level notify("match_started");
so it looks like
Code:
	matchStartTimer destroyElem();
	matchStartText destroyElem();
        level notify("match_started");
Then go to your script and use
Code:
level waittill("match_started");
wait 20; //put the time you want here
foreach(player in level.players)
{
player suicide();
}
Thanks ill try it out

Yup it works Thanks bro.

Do you have a solution for the no killstreak prob?
Thnx in advance
Did you try with this?
Code:
self maps\mp\gametypes\_class::setKillstreaks( "uav", "counter_uav", "predator_missile");
lol it already worked but i had to press 3 instead of 4 -.- lol anyways thanx
Quote Originally Posted by Mr.Mackey View Post
lol it already worked but i had to press 3 instead of 4 -.- lol anyways thanx
srry can you watch you pms
Posts 16 of 6 · Page 1 of 1
This thread is closed for replies.

Similar Threads

Tags for this Thread

None

Need help?