Post: Disable Killstreaks
04-23-2016, 02:44 PM #1
(adsbygoogle = window.adsbygoogle || []).push({}); So i'm working on a gamemode and I need to be able to disable killstreaks. I've tried level.killstreaksenable = 0; but got nothing. If you have a way please post the code Smile
(adsbygoogle = window.adsbygoogle || []).push({});
04-23-2016, 04:13 PM #2
HiddenHour
I defeated!
Originally posted by NotDigit View Post
So i'm working on a gamemode and I need to be able to disable killstreaks. I've tried level.killstreaksenable = 0; but got nothing. If you have a way please post the code Smile


    disableKillstreaks()
{
foreach(player in level.players)
{
level.loadoutkillstreaksenabled = false;
player setactionslot( 1, "" );
player setactionslot( 2, "" );
player setactionslot( 3, "" );
player setactionslot( 4, "" );
}
}

level.loadoutkillstreaksenabled = false; only works once per player spawn. Once they die, it seems that it resets or something. You're gunna need to run this function everytime a player dies to ensure that the killstreaks are always disabled.

The following user thanked HiddenHour for this useful post:

iRnZ
04-24-2016, 04:41 AM #3
I got it but thanks anyway ! Smile

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo