Post: How To Make and Stop A Loop [CFG]
10-25-2013, 03:01 AM #1
ModdedModder
Gym leader
(adsbygoogle = window.adsbygoogle || []).push({}); Ok so alot of people have made a code witch makes there name change color or spams out the say menu. And they create a non-stop loop. They create a loop like this.
    [SIZE=4][CENTER][B][COLOR="#FF0000"]BAD LOOP CODE[/COLOR][/B][/CENTER][/SIZE]set CODE "say ^2I Love MW2;wait 10;say ^7I Love MW2;vstr CODE"
...it restarts the code over and over and over.

I found a way people can do this and control. This is the code.

    [SIZE=4][CENTER][B][COLOR="#00FF00"]GOOD LOOP CODE[/COLOR][/B][/CENTER][/SIZE]set CODE "say ^2I Love MW2;wait 10;say ^7I Love MW2;exec ../../../dev_usb000/buttons_default.cfg;vstr CODE"

After You have this code in your patch, let it run for how ever long you want it. Then when you want to be done with the loop. Plug in your USB to the right slot with this code on it.
    [SIZE=4][CENTER][B][COLOR="#00FFFF"]USB CODE[/COLOR][/B][/CENTER][/SIZE]set CODE ""

It basically sets the CODE to nothing. It updates it while in game. This also works while in pre-game! Smile

So now people can make there name flash for as long as they want.
Heres the code to flashing name forever. Credits to You must login or register to view this content.
    set [B][COLOR="#00FF00"]FlashingName[/COLOR][/B] "disconnect;vstr SI1;wait 50;vstr SI2;wait 50;vstr SI3;wait 50;vstr SI4;wait 50;vstr SI5;wait 50;vstr SI6;wait 50;vstr SI7;wait 50;vstr SI8;wait 50;vstr SI9;wait 50;vstr 1CHANGERArTz"
set 1CHANGERArTz "vstr SI1;wait 50;vstr SI2;wait 50;vstr SI3;wait 50;vstr SI4;wait 50;vstr SI5;wait 50;vstr SI6;wait 50;vstr SI7;wait 50;vstr SI8;wait 50;vstr SI9;wait 50;vstr 2CHANGERArTz"
set 2CHANGERArTz "vstr SI1;wait 50;vstr SI2;wait 50;vstr SI3;wait 50;vstr SI4;wait 50;vstr SI5;wait 50;vstr SI6;wait 50;vstr SI7;wait 50;vstr SI8;wait 50;vstr SI9;wait 50;vstr 3CHANGERArTz"
set 3CHANGERArTz "vstr SI1;wait 50;vstr SI2;wait 50;vstr SI3;wait 50;vstr SI4;wait 50;vstr SI5;wait 50;vstr SI6;wait 50;vstr SI7;wait 50;vstr SI8;wait 50;vstr SI9;wait 50;vstr 4CHANGERArTz"
set 4CHANGERArTz "vstr SI1;wait 50;vstr SI2;wait 50;vstr SI3;wait 50;vstr SI4;wait 50;vstr SI5;wait 50;vstr SI6;wait 50;vstr SI7;wait 50;vstr SI8;wait 50;vstr SI9;wait 50;vstr 5CHANGERArTz"
set 5CHANGERArTz "vstr SI1;wait 50;vstr SI2;wait 50;vstr SI3;wait 50;vstr SI4;wait 50;vstr SI5;wait 50;vstr SI6;wait 50;vstr SI7;wait 50;vstr SI8;wait 50;vstr SI9;wait 50;vstr 6CHANGERArTz"
set 6CHANGERArTz "vstr SI1;wait 50;vstr SI2;wait 50;vstr SI3;wait 50;vstr SI4;wait 50;vstr SI5;wait 50;vstr SI6;wait 50;vstr SI7;wait 50;vstr SI8;wait 50;vstr SI9;wait 50;vstr 7CHANGERArTz"
set 7CHANGERArTz "vstr SI1;wait 50;vstr SI2;wait 50;vstr SI3;wait 50;vstr SI4;wait 50;vstr SI5;wait 50;vstr SI6;wait 50;vstr SI7;wait 50;vstr SI8;wait 50;vstr SI9;wait 50;vstr 8CHANGERArTz"
set 8CHANGERArTz "vstr SI1;wait 50;vstr SI2;wait 50;vstr SI3;wait 50;vstr SI4;wait 50;vstr SI5;wait 50;vstr SI6;wait 50;vstr SI7;wait 50;vstr SI8;wait 50;vstr SI9;wait 50;vstr 9CHANGERArTz"
set 9CHANGERArTz "vstr SI1;wait 50;vstr SI2;wait 50;vstr SI3;wait 50;vstr SI4;wait 50;vstr SI5;wait 50;vstr SI6;wait 50;vstr SI7;wait 50;vstr SI8;wait 50;vstr SI9;wait 50;vstr 10CHANGERArTz"
set 10CHANGERArTz "vstr SI1;wait 50;vstr SI2;wait 50;vstr SI3;wait 50;vstr SI4;wait 50;vstr SI5;wait 50;vstr SI6;wait 50;vstr SI7;wait 50;vstr SI8;wait 50;vstr SI9;wait 50;vstr SI2[B][COLOR="#00FF00"]
;exec ../../../dev_usb000/buttons_default.cfg;vstr FlashingName[/COLOR][/B]"

set SI9 "set ui_playerPartyColor 1 1 0 1;setPlayerData prestige 3;setPlayerData experience 2516000;uploadStats"
set SI8 "set ui_playerPartyColor 1 0 0 1;setPlayerData prestige 4;setPlayerData experience 2516000;uploadStats"
set SI7 "set ui_playerPartyColor 0 1 0 1;setPlayerData prestige 5;setPlayerData experience 2516000;uploadStats"
set SI6 "set ui_playerPartyColor 0 1 1 1;setPlayerData prestige 6;setPlayerData experience 2516000;uploadStats"
set SI5 "set ui_playerPartyColor 0.7 0.3 0.7 1;setPlayerData prestige 7;setPlayerData experience 2516000;uploadStats"
set SI4 "set ui_playerPartyColor .2 0.5 1 1;setPlayerData prestige 8;setPlayerData experience 2516000;uploadStats"
set SI3 "set ui_playerPartyColor 1 0 0 1;setPlayerData prestige 9;setPlayerData experience 2516000;uploadStats"
set SI2 "set ui_playerPartyColor 0 1 0 1:setPlayerData prestige 10;setPlayerData experience 2516000;uploadStats"
set SI1 "set ui_playerPartyColor 0 1 1 1;setPlayerData prestige 11;setPlayerData experience 2516000;uploadStats"

    [SIZE=4][CENTER][B][COLOR="#00FFFF"]USB CODE[/COLOR][/B][/CENTER][/SIZE]set FlashingName ""



I hope this helps people with there loop problems. Enjoy! Smile
(adsbygoogle = window.adsbygoogle || []).push({});

The following 2 users say thank you to ModdedModder for this useful post:

JakeP0500,
10-25-2013, 03:39 AM #2
Script Kiddie
At least I can fight
Good method man Smile never would of thought of doing it like this

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo