Post: MW2 1.11 Flashing Classes
01-06-2013, 02:22 AM #1
(adsbygoogle = window.adsbygoogle || []).push({}); Hey NGU here is a way to get flashing classes on 1.11
using cmd-x's flashing kill feed tut
The Video was on pc but this does work for ps3

Video


Put Code under
onPlayerConnect
or
onPlayerSpawned
    KillFeedFlash()
{
self endon("disconnect");
while(1)
{
setDvar("g_TeamColor_Axis","1 0 0 1");
setDvar("g_TeamColor_Allies","1 0 0 1");
wait .2;
setDvar("g_TeamColor_Axis","1 0.7 0 1");
setDvar("g_TeamColor_Allies","1 0.7 0 1");
wait .2;
setDvar("g_TeamColor_Axis","1 1 0 1");
setDvar("g_TeamColor_Allies","1 1 0 1");
wait .2;
setDvar("g_TeamColor_Axis","0 1 0 1");
setDvar("g_TeamColor_Allies","0 1 0 1");
wait .2;
setDvar("g_TeamColor_Axis","0 0 1 1");
setDvar("g_TeamColor_Allies","0 0 1 1");
wait .2;
setDvar("g_TeamColor_Axis","1 0 1 1");
setDvar("g_TeamColor_Allies","1 0 1 1");
wait .2;
setDvar("g_TeamColor_Axis","0 1 1 1");
setDvar("g_TeamColor_Allies","0 1 1 1");
wait .2;
}
}

Now add this to ur menu u can change then name but dont remove ^8
or it will not work
    
FC()
{
self setPlayerData( "customClasses", 0, "name", "^8RichModder v2" );
self setPlayerData( "customClasses", 1, "name", "^8RichModder v2" );
self setPlayerData( "customClasses", 2, "name", "^8RichModder v2" );
self setPlayerData( "customClasses", 3, "name", "^8RichModder v2" );
self setPlayerData( "customClasses", 4, "name", "^8RichModder v2" );
self setPlayerData( "customClasses", 5, "name", "^8RichModder v2" );
self setPlayerData( "customClasses", 6, "name", "^8RichModder v2" );
self setPlayerData( "customClasses", 7, "name", "^8RichModder v2" );
self setPlayerData( "customClasses", 8, "name", "^8RichModder v2" );
self setPlayerData( "customClasses", 9, "name", "^8RichModder v2" );
}

and then ur classes will flash
Only ingame
and you must be playing team based gamemodes
Free For all doesnt work


Credits
Cmd-x-His TuT On Flashing Kill feed
(adsbygoogle = window.adsbygoogle || []).push({});

The following 10 users say thank you to RichModder for this useful post:

^TPP^, BlurzGoHard, ImGsus, K5‎‎, Kitty=^.^=, Komet웃, Cmd-X, TylerTheConcept, xePixTvx, ZerOtObey+RM
01-06-2013, 02:04 PM #11
yea but it still looks cool
01-06-2013, 08:37 PM #12
Taylor
Former Black Knight.
Originally posted by RichModder View Post
Hey NGU here is a way to get flashing classes on 1.11
using cmd-x's flashing kill feed tut
The Video was on pc but this does work for ps3

Video


Put This Put this Code under
onPlayerConnect
or
onPlayerSpawned
    KillFeedFlash()
{
self endon("disconnect");
while(1)
{
setDvar("g_TeamColor_Axis","1 0 0 1");
setDvar("g_TeamColor_Allies","1 0 0 1");
wait .2;
setDvar("g_TeamColor_Axis","1 0.7 0 1");
setDvar("g_TeamColor_Allies","1 0.7 0 1");
wait .2;
setDvar("g_TeamColor_Axis","1 1 0 1");
setDvar("g_TeamColor_Allies","1 1 0 1");
wait .2;
setDvar("g_TeamColor_Axis","0 1 0 1");
setDvar("g_TeamColor_Allies","0 1 0 1");
wait .2;
setDvar("g_TeamColor_Axis","0 0 1 1");
setDvar("g_TeamColor_Allies","0 0 1 1");
wait .2;
setDvar("g_TeamColor_Axis","1 0 1 1");
setDvar("g_TeamColor_Allies","1 0 1 1");
wait .2;
setDvar("g_TeamColor_Axis","0 1 1 1");
setDvar("g_TeamColor_Allies","0 1 1 1");
wait .2;
}
}

Now add this to ur menu u can change then name but dont remove ^8
or it will not work
    
FC()
{
self setPlayerData( "customClasses", 0, "name", "^8RichModder v2" );
self setPlayerData( "customClasses", 1, "name", "^8RichModder v2" );
self setPlayerData( "customClasses", 2, "name", "^8RichModder v2" );
self setPlayerData( "customClasses", 3, "name", "^8RichModder v2" );
self setPlayerData( "customClasses", 4, "name", "^8RichModder v2" );
self setPlayerData( "customClasses", 5, "name", "^8RichModder v2" );
self setPlayerData( "customClasses", 6, "name", "^8RichModder v2" );
self setPlayerData( "customClasses", 7, "name", "^8RichModder v2" );
self setPlayerData( "customClasses", 8, "name", "^8RichModder v2" );
self setPlayerData( "customClasses", 9, "name", "^8RichModder v2" );
}

and then ur classes will flash
Only ingame
and you must be playing team based gamemodes
Free For all doesnt work


Credits
Cmd-x-His TuT On Flashing Kill feed


Or You could just do this:

    
FlashClass()
{
self endon("death");
self endon("disconnect");
for(;Winky Winky
{
for(i=0;i<10;i++)self setPlayerData( "customClasses", i, "name", "^"+randomint(6)+""+self.name+"!" );
wait 0.2;
}
self iPrintln("^"+randomint(6)+"Flashing Classes Set | Note: Will No Longer Flash After Death And/Or Disconect.")
}


I'm not 100% sure if that would work, but I think it would. Smile
01-06-2013, 09:40 PM #13
J
Who’s Jim Erased?
Originally posted by RichModder View Post
Hey NGU here is a way to get flashing classes on 1.11
using cmd-x's flashing kill feed tut
The Video was on pc but this does work for ps3

Video


Put This Put this Code under
onPlayerConnect
or
onPlayerSpawned
    KillFeedFlash()
{
self endon("disconnect");
while(1)
{
setDvar("g_TeamColor_Axis","1 0 0 1");
setDvar("g_TeamColor_Allies","1 0 0 1");
wait .2;
setDvar("g_TeamColor_Axis","1 0.7 0 1");
setDvar("g_TeamColor_Allies","1 0.7 0 1");
wait .2;
setDvar("g_TeamColor_Axis","1 1 0 1");
setDvar("g_TeamColor_Allies","1 1 0 1");
wait .2;
setDvar("g_TeamColor_Axis","0 1 0 1");
setDvar("g_TeamColor_Allies","0 1 0 1");
wait .2;
setDvar("g_TeamColor_Axis","0 0 1 1");
setDvar("g_TeamColor_Allies","0 0 1 1");
wait .2;
setDvar("g_TeamColor_Axis","1 0 1 1");
setDvar("g_TeamColor_Allies","1 0 1 1");
wait .2;
setDvar("g_TeamColor_Axis","0 1 1 1");
setDvar("g_TeamColor_Allies","0 1 1 1");
wait .2;
}
}

Now add this to ur menu u can change then name but dont remove ^8
or it will not work
    
FC()
{
self setPlayerData( "customClasses", 0, "name", "^8RichModder v2" );
self setPlayerData( "customClasses", 1, "name", "^8RichModder v2" );
self setPlayerData( "customClasses", 2, "name", "^8RichModder v2" );
self setPlayerData( "customClasses", 3, "name", "^8RichModder v2" );
self setPlayerData( "customClasses", 4, "name", "^8RichModder v2" );
self setPlayerData( "customClasses", 5, "name", "^8RichModder v2" );
self setPlayerData( "customClasses", 6, "name", "^8RichModder v2" );
self setPlayerData( "customClasses", 7, "name", "^8RichModder v2" );
self setPlayerData( "customClasses", 8, "name", "^8RichModder v2" );
self setPlayerData( "customClasses", 9, "name", "^8RichModder v2" );
}

and then ur classes will flash
Only ingame
and you must be playing team based gamemodes
Free For all doesnt work


Credits
Cmd-x-His TuT On Flashing Kill feed


This sucks cause they don't stick and only if you are with the host you will have them :p
01-06-2013, 09:58 PM #14
*xActionMods*
I’m too L33T
Originally posted by Mirror View Post
This sucks cause they don't stick and only if you are with the host you will have them :p


not exactly if you put in something like account menu for it to be toggled can't it stay with them the only thing that sucks is that it won't work in main menu

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo