ItsMods

Full Version: 3D Holographic RADAR by Lost4468
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3
You need developer to be set to 1 and developer_script to be set to 1 when you do this so the game is in dev mode. You can change the range with the range var in the function, just add the radar function onto onplayer connect for one person only.



Code:
radar()
{
        pos=(-1225,200,-50);
        for(i=0;i<360;i+=0.3)
                thread fade(pos,pos+(sin(i)*100,cos(i)*100,0),(0,0,0));
        range=2000;
        for(i=0;;i+=.25)
        {
                thread fade(pos,pos+(sin(i)*100,cos(i)*100,0),(0,1,0),1.5);
                for(x=0;x<level.players.size;x++)
                        if(distance2d(level.players[x].origin,pos+(sin(i)*100,cos(i)*100,0))<distance2d(level.players[x].origin,pos+(sin(i+0.25)*100,cos(i+0.25)*100,0)) && distance2d(level.players[x].origin,pos+(sin(i)*100,cos(i)*100,0))<distance2d(level.players[x].origin,pos+(sin(i-0.25)*100,cos(i-0.25)*100,0))&&distance2d(level.players[x].origin,pos)<range){
                                thread playSoundinspace("mpl_turret_alert",pos);
                                if(level.players[x].team=="axis")c=(1,0,0);else c=(0,0,1);
                                        for(z=0;z<360;z+=5)
                                                thread fade(pos+(sin(i)*distance2d(level.players[x].origin,pos)/(range/100),cos(i)*distance2d(level.players[x].origin,pos)/(range/100),0),pos+((sin(i)*distance2d(level.players[x].origin,pos)/(range/100))+sin(z)*5,(cos(i)*distance2d(level.players[x].origin,pos)/(range/100))+cos(z)*5,10),c,4);}
                if(i/2==int(i/2))
                        wait .05;
        }
}

fade(pos,end,col,time)
{
        if(!isdefined(time))
                for(;;){
                        line(pos,end,col,1,1);wait .05;}
        for(i=1;i<time*20;i++)
        {
                line(pos,end,col/(i/(time*4)),time,1,1);
                wait .05;
        }
}

Made by Lost4468.
Hoooooow caan you seee intoo myy eeyes, like open dooooors


WAIT WHAT THE FUCK THERE ARE HOLOGRAPHS IN BLACK OPS?!
well that's what I call coding !!
wow @ lost. awesome skills
OMG just awesome!!!
Now thats awesome *stunned*
It's very amazing his skills, but I mean: it's kinda useless. What could you do with a big radar on the ground?
I dunno, but it looks good so its good for me XD jks.
But it is in developer mode, which is hard to put it in a mod (I mean mod is for players, but it can be only activated by one player)
Here's the point I agree with
killingdyl Wrote:lol wow u must really had NOTHING else to do haha its cool but idk doesnt seem like it would really be used for anything besides just looking cool in the middle of no where
(02-10-2011, 09:07)surtek Wrote: [ -> ]It's very amazing his skills, but I mean: it's kinda useless. What could you do with a big radar on the ground?

What do you mean? It's at least as useful as his merry go 'round.
Pages: 1 2 3