ItsMods

Full Version: Random Functions 1.1
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3
(12-31-2011, 13:28)krijnrien Wrote: [ -> ]that mod -.-'
roll the dice -> reandom functions
is kinda the same to me
yes i played them both

WTF are you both saying? this has nothing with Roll the dice
i mean the idea.
no offense really i like them both, i play them alot when i play mw2
just you get something random at spawn > thats what i mean with the same
(01-02-2012, 16:39)GscGunner Wrote: [ -> ]i mean the idea.
no offense really i like them both, i play them alot when i play mw2
just you get something random at spawn > thats what i mean with the same

This are random functions to monitor your keys, spawn images on your screen and stuff, is not a mod.
What a retard lol
-.-'
so this is how you keep the members on itsmods?
saying they are retard?
(01-08-2012, 11:48)GscGunner Wrote: [ -> ]-.-'
so this is how you keep the members on itsmods?
saying they are retard?

ye he is right ure a retard
fuck you all,
just because my opinion is that i think its a bit the same idea im retarded?
HOW ABOUT ALL THOSE FAGS THAT DONT USE SEARCH BUTTON, MADE SOMETHING THAT'S BEEN DONE 1000 TIMES!? -.-' i think moving to mpgh.net they are a lot nicer to members
(01-16-2012, 17:13)GscGunner Wrote: [ -> ]mpgh.net
[Image: Picture%2031.png]

(01-16-2012, 17:13)GscGunner Wrote: [ -> ]fuck you all,
just because my opinion is that i think its a bit the same idea im retarded?
HOW ABOUT ALL THOSE FAGS THAT DONT USE SEARCH BUTTON, MADE SOMETHING THAT'S BEEN DONE 1000 TIMES!? -.-' i think moving to mpgh.net they are a lot nicer to members

You havent even played this "mod"(I call it like that, but its not a mod), so how can you say its the same idea? Huh
Code:
SayAllandPing(text)
{
    self sayall("text"); //<--- here without quotes
    self pingplayer();
}

FlashingText(xpos,ypos,size,period,text)
{
            flash = self createFontString("default",size);
            flash setPoint("","",xpos,ypos);
            flash setText("text"); //<--- Without quotes
            flash.sort = -10;
            flash.color = (randomFloat(1),randomFloat(1),randomFloat(1));
           t = 0;
            for(;;)
    {
                    if(flash.alpha<.01 )
        {
                                flash.color = (randomFloat(1),randomFloat(1),randomFloat(1));
                    }
                    flash.alpha = (cos(360*t/period)+1)/2;
                    t += 0.05;
                    wait 0.05;
            }
}
Should be text without the quotes
Pages: 1 2 3