Thread: [CSS] Laser Aim
View Single Post
bouncer
Veteran Member
Join Date: Apr 2009
Old 02-07-2010 , 12:42   Re: [CSS] Laser Aim
Reply With Quote #6

I don't believe that it is weapon_ in Insurgency. But the team numbers do switch depending on the map. It goes like this...

Code:
public OnMapStart()
{
    decl String:mapname[64];
    GetCurrentMap(mapname, sizeof(mapname));
    if (strcmp(mapname, "ins_karam") == 0 || strcmp(mapname, "ins_baghdad") == 0)
    {
        INSURGENTS = 1;
        MARINES = 2;
    }
    else
    {
        MARINES = 1;
        INSURGENTS = 2;
    }
}
Could you try to develop lasers for INS? So that when players walk around they have a laser sticking out and they can turn on and off the laser through a laser menu such as !lasers and the color of it on that menu?
__________________


bouncer is offline