{cool.G} ingre

Users
  • Content Count

    195
  • Donations

    0.00 EUR 
  • Joined

  • Last visited

Posts posted by {cool.G} ingre


  1. hello ice ops long time

    hello all

     

    anyone can help me

     

    i search script for auto switch weapon P90 vs MP5

    for example if player connect select classe weapon p90

    script change on mp5

     

    thx for any help

     

    PS: sorry for bad english


  2. hello all

    how can i enable 2 veicule one time

    2 heli on time
    in hardpoints.gsc
    level.hardpointItems["carepackage_mp"] = priority;
    priority++;
    maybe so will work
    level.hardpointItems["carepackage_mp"] = priority;
    priority = 0;

     

    thx for any help


  3. 19 hours ago, NinjaWa said:

    Hmm go inside a .gsc script and call it somewhere where player connects or spawns and write this:

     

    self setclientdvar(" cg_drawcrosshair", 0);

     

    About the progressbar, I guess you will need to edit .menu, not sure which ones.

    thx bro alredy i fix this

    hud_hardcore_enable

    make softcore with hardcore style

    thx for answer


  4. On 23.01.2016 at 2:54 AM, xPr3d4t0Rs said:

    Ok I will search Ninja. Thanks.

    mab why you search not utils questions

    if you like runn no limit go play MW2 exist perk run non stop

    mate try ask important questions

    how add AC130 strike

    kamikaze strike

    NUKE strike

    have best questions


  5. 16 hours ago, SkillzZz said:

    Guys how to get like iceops server list page i know its php code and i know its token from serverstatus.xml but how to make it xD 

    Any help?

    hi mate

    i think in ICE ops server list is only ICEOPS servers clan

    maybe NO? not sure


  6. hi all

    my server dont start with dll*

    in 1.7a is ok

    but 1.8 dont work correct


    loadplugin "antinamestealing.dll"

    loadplugin "antispam.dll"

    loadplugin "censor.dll"

    not work corect

     

    but if i delet dll


    loadplugin "antinamestealing"

    loadplugin "antispam"

    loadplugin "censor"

    give errore


  7. 19 hours ago, NinjaWa said:

    You can simply use a script made by Crazy from RoyalSoldiers.

     

    
    //  ________/\\\\\\\\\__________________________________________________________        
    //   _____/\\\////////___________________________________________________________       
    //    ___/\\\/_________________________________________________________/\\\__/\\\_      
    //     __/\\\______________/\\/\\\\\\\___/\\\\\\\\\_____/\\\\\\\\\\\___\//\\\/\\\__     
    //      _\/\\\_____________\/\\\/////\\\_\////////\\\___\///////\\\/_____\//\\\\\___    
    //       _\//\\\____________\/\\\___\///____/\\\\\\\\\\_______/\\\/________\//\\\____   
    //        __\///\\\__________\/\\\__________/\\\/////\\\_____/\\\/_______/\\_/\\\_____  
    //         ____\////\\\\\\\\\_\/\\\_________\//\\\\\\\\/\\__/\\\\\\\\\\\_\//\\\\/______ 
    //          _______\/////////__\///___________\////////\//__\///////////___\////________
    
    init()
    {
    	level.welcomegeo = undefined;
    	level.iswaitingforgeo = undefined;
    	
    	for(;;)
    	{
    		level waittill("connected",player);
    		
    		if( !isdefined( player.pers["player_welcomed"] ) )
    		{
    			player.pers["player_welcomed"] = true;  // player welcomed
    			player thread geo();
    		}
    	}
    }
    
    geo()
    {
    	level endon("disconnect");
    	
    	location = self getgeolocation (2);
    	while(isDefined(level.welcomegeo))
    	{
    		wait .05;
    		level.iswaitingforgeo = true;
    	}
    	level.iswaitingforgeo = undefined;
    	level hudmsgtop("^1Welcome ^2" + self.name  + " ^1From ^2" + location);
    }
    
    hudmsgtop(text)
    {
    	level.welcomegeo = true;
    	msg = addTextHud( level, 750, 5, 1, "left", "middle", undefined, undefined, 1.4, 888 );
    	msg SetText(text);
    	msg.sort = 102;
    	msg.foreground = 1;
    	msg.archived = true;
    	msg.alpha = 1;
    	msg.fontScale = 1.5;
    	msg.color = level.randomcolour;
    	msg MoveHud(30,-1300);
    	wait 15;
    	msg destroy();
    	level.welcomegeo = undefined;
    }
    
    MoveHud(time,x,y) {
        self moveOverTime(time);
        if(isDefined(x))
            self.x = x;
           
        if(isDefined(y))
            self.y = y;
    }
    
    addTextHud( who, x, y, alpha, alignX, alignY, horiz, vert, fontScale, sort ) {
    	if( isPlayer( who ) )
    		hud = newClientHudElem( who );
    	else
    		hud = newHudElem();
    
    	hud.x = x;
    	hud.y = y;
    	hud.alpha = alpha;
    	hud.sort = sort;
    	hud.alignX = alignX;
    	hud.alignY = alignY;
    	if(isdefined(vert))
    		hud.vertAlign = vert;
    	if(isdefined(horiz))
    		hud.horzAlign = horiz;		
    	if(fontScale != 0)
    		hud.fontScale = fontScale;
    	hud.foreground = 1;
    	hud.archived = 0;
    	return hud;
    }

    :)

    hi my friend thx for answer

    but i need only this script?

    ever show welcom ingre from N/A

    maybe i must use MAM to?

    i tested on test server witout MAM