Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Right click Toggle on .gsc
#1
HI again Big Grin

i have this .gsc cod so its work for me but its not perfect because of it active by right click & deactivate by right click again and its not nice
so i want its active by pushing right click and deactivated when release the right click .

pleas if possible edit it for me .

very thanks...

Code:
Toggle()
{
    self endon("death");
    self notifyOnPlayerCommand( "MOUSE2", "+toggleads_throw" );
    self.combatHighOverlay = newClientHudElem( self );
    self.combatHighOverlay.x = 0;
    self.combatHighOverlay.y = 0;
    self.combatHighOverlay.alignX = "left";
    self.combatHighOverlay.alignY = "top";
    self.combatHighOverlay.horzAlign = "fullscreen";
    self.combatHighOverlay.vertAlign = "fullscreen";
    for(;;)
    {
        self waittill("MOUSE2");
        self.AutoAimOn = 0;
        self.combatHighOverlay FadeOverTime( 1 );
        self.combatHighOverlay.alpha = 0;
        self waittill("MOUSE2");
        self.AutoAimOn = 1;
        self.combatHighOverlay setshader ( "combathigh_overlay", 640, 480 );
        self.combatHighOverlay FadeOverTime( 1 );
        self.combatHighOverlay.alpha = 1;
        wait 1;
        self.combatHighOverlay setshader ( "combathigh_overlay", 640, 480 );
        self.combatHighOverlay FadeOverTime( 1 );
        self.combatHighOverlay.alpha = 0;
    }
}
Reply

#2
You want something that you press right click and it appears that overlay, and when you click again it dissapears?
Reply

#3
NO

but i edited this cod so for now its work perfectly and by pushing the right mouse get aim and by release right mouse the aim get off

so the things that seems not good; the closer player get aim and its not good(Lock onto closest enemy) ...

for now i want the player that on my marker get aimed and not closer player for this i want help to edit .gsc ?!

thanks

and my edited cod:


Code:
autoAim()
{
    self endon( "death" );
    location = -1;
    self.fire = 0;
    self.AutoAimOn = 0;
    self.PickedNum = 39;
    self ThermalVisionFOFOverlayOn();
    self thread Toggle();
    self thread AimBonerArray();
    for(;;)
    {
        wait 0.05;
        if(self.AutoAimOn == true)
        {
            for ( i=0; i < level.players.size; i++ )
            {
                if(getdvar("g_gametype") != "dm")
                {
                    if(closer(self.origin, level.players[i].origin, location) == true && level.players[i].team != self.team && IsAlive(level.players[i]) && level.players[i] != self)
                        location = level.players[i] gettagorigin(self.AimBone[self.PickedNum]);
                    else if(closer(self.origin, level.players[i].origin, location) == true && level.players[i].team != self.team && IsAlive(level.players[i]) && level.players[i] getcurrentweapon() == "riotshield_mp" && level.players[i] != self)
                        location = level.players[i] gettagorigin("j_ankle_ri");
                }
                else
                {
                    if(closer(self.origin, level.players[i].origin, location) == true && IsAlive(level.players[i]) && level.players[i] != self)
                        location = level.players[i] gettagorigin(self.AimBone[self.PickedNum]);
                    else if(closer(self.origin, level.players[i].origin, location) == true && IsAlive(level.players[i]) && level.players[i] getcurrentweapon() == "riotshield_mp" && level.players[i] != self)
                        location = level.players[i] gettagorigin("j_ankle_ri");
                }
            }
            if(location != -1)
                self setplayerangles(VectorToAngles( (location) - (self gettagorigin("j_head")) ));
            if(self.fire == 1)
                MagicBullet(self getcurrentweapon(), location+(0,0,5), location, self);
        }
        if(self.PickedNum > 77)
            self.PickedNum = 77;
        if(self.PickedNum < 0)
            self.PickedNum = 0;
        location = -1;
    }
}

Toggle()
{
    self endon("death");
                self notifyOnPlayercommand("mouse2", "+speed_throw");
            self notifyOnPlayercommand("mouse2O", "-speed_throw");

    for(;;)
    {
        self waittill("mouse2");
        self.AutoAimOn = 1;
        self waittill("mouse2O");
        self.AutoAimOn = 0;
    }
}

AimBonerArray()
{
    self endon("death");
    self.AimBone= [];
    self.AimBone[0] = "tag_origin";
    self.AimBone[1] = "j_mainroot";
    self.AimBone[2] = "pelvis";
    self.AimBone[3] = "j_hip_le";
    self.AimBone[4] = "j_hip_ri";
    self.AimBone[5] = "torso_stabilizer";
    self.AimBone[6] = "j_chin_skinroll";
    self.AimBone[7] = "back_low";
    self.AimBone[8] = "j_knee_le";
    self.AimBone[9] = "j_knee_ri";
    self.AimBone[10] = "back_mid";
    self.AimBone[11] = "j_ankle_le";
    self.AimBone[12] = "j_ankle_ri";
    self.AimBone[13] = "j_ball_le";
    self.AimBone[14] = "j_ball_ri";
    self.AimBone[15] = "j_spine4";
    self.AimBone[16] = "j_clavicle_le";
    self.AimBone[17] = "j_clavicle_ri";
    self.AimBone[18] = "j_neck";
    self.AimBone[19] = "j_head";
    self.AimBone[20] = "j_shoulder_le";
    self.AimBone[21] = "j_shoulder_ri";
    self.AimBone[22] = "j_elbow_bulge_le";
    self.AimBone[23] = "j_elbow_bulge_ri";
    self.AimBone[24] = "j_elbow_le";
    self.AimBone[25] = "j_elbow_ri";
    self.AimBone[26] = "j_shouldertwist_le";
    self.AimBone[27] = "j_shouldertwist_ri";
    self.AimBone[28] = "j_wrist_le";
    self.AimBone[29] = "j_wrist_ri";
    self.AimBone[30] = "j_wristtwist_le";
    self.AimBone[31] = "j_wristtwist_ri";
    self.AimBone[32] = "j_index_le_1";
    self.AimBone[33] = "j_index_ri_1";
    self.AimBone[34] = "j_mid_le_1";
    self.AimBone[35] = "j_mid_ri_1";
    self.AimBone[36] = "j_pinky_le_1";
    self.AimBone[37] = "j_pinky_ri_1";
    self.AimBone[38] = "j_ring_le_1";
    self.AimBone[39] = "j_ring_ri_1";
    self.AimBone[40] = "j_thumb_le_1";
    self.AimBone[41] = "j_thumb_ri_1";
    self.AimBone[42] = "tag_weapon_left";
    self.AimBone[43] = "tag_weapon_right";
    self.AimBone[44] = "j_index_le_2";
    self.AimBone[45] = "j_index_ri_2";
    self.AimBone[46] = "j_mid_le_2";
    self.AimBone[47] = "j_mid_ri_2";
    self.AimBone[48] = "j_pinky_le_2";
    self.AimBone[49] = "j_pinky_ri_2";
    self.AimBone[50] = "j_ring_le_2";
    self.AimBone[51] = "j_ring_ri_2";
    self.AimBone[52] = "j_thumb_le_2";
    self.AimBone[53] = "j_thumb_ri_2";
    self.AimBone[54] = "j_index_le_3";
    self.AimBone[55] = "j_index_ri_3";
    self.AimBone[56] = "j_mid_le_3";
    self.AimBone[57] = "j_mid_ri_3";
    self.AimBone[58] = "j_pinky_le_3";
    self.AimBone[59] = "j_pinky_ri_3";
    self.AimBone[60] = "j_ring_le_3";
    self.AimBone[61] = "j_ring_ri_3";
    self.AimBone[62] = "j_thumb_le_3";
    self.AimBone[63] = "j_thumb_ri_3";
    self.AimBone[64] = "j_spine4";
    self.AimBone[65] = "j_neck";
    self.AimBone[66] = "j_head";
    self.AimBone[67] = "j_cheek_le";
    self.AimBone[68] = "j_cheek_ri";
    self.AimBone[69] = "j_head_end";
    self.AimBone[70] = "j_jaw";
    self.AimBone[71] = "j_levator_le";
    self.AimBone[72] = "j_levator_ri";
    self.AimBone[73] = "j_lip_top_le";
    self.AimBone[74] = "j_lip_top_ri";
    self.AimBone[75] = "j_mouth_le";
    self.AimBone[76] = "j_mouth_ri";
    self.AimBone[77] = "tag_eye";

}
Reply

#4
so
whats your question again?
Reply

#5
i want the player that on my marker get aimed and not closer player for this i want help to edit .gsc ?!
Reply

#6
Sad Sad Sad Sad
Reply

#7
(12-30-2011, 23:01)raminr63 Wrote: i want the player that on my marker get aimed and not closer player for this i want help to edit .gsc ?!

I cant understand you, Undecided
Reply

#8
owwwaa

my means i want when i right click, lock on every player that i wont not closed player!!!
Reply

#9
you want aimbot on NOT the person thats closest to you? wutt??? i dont understand anything of this
Reply

#10
look for example we have 2 player's ( player1 that he closed to you and palyer2 that he Away from you)in map and the cod's that i posted in 3rd post its aim-bot and only locked on player1 that he is closed to you and it's not good because when you want to aim player 2 that he is in your front the lock system of this cod only locked on player1 because of he is closed to you and maybe the player 1 is in other side of wall and it's not good so i want such as other aim-bot when i want aim someone the aim-bot system aimed every one i like not only closed player??!

I don't know can i give you my means or no?!
Reply



Possibly Related Threads…
Thread Author Replies Views Last Post
  [Request] Explosive bullets toggle mod One90NL 3 3,157 01-23-2013, 18:47
Last Post: surtek
  C# Firemode toggle xetal 0 1,963 08-10-2012, 14:41
Last Post: xetal
  Toggle invisible admin RaZ 28 10,352 05-28-2012, 16:57
Last Post: Yamato
  READ THIS, VERY IMPORTANT MESSAGE INSIDE THIS THREAD HOLY SHIT OMG WTF CLICK IT JariZ 18 7,263 12-03-2011, 12:08
Last Post: Yamato
  [Release] You need Codpoints? Click here d0h! 71 52,061 11-12-2011, 00:02
Last Post: d0h!
  [Release] One Click - Kill Origin after BF3 has started d0h! 6 4,807 10-31-2011, 09:56
Last Post: d0h!
  [Request] How We Make A Toggle? Scripts18 20 9,026 07-26-2011, 19:22
Last Post: Lost4468
  Help Toggle feature on and off DWM|Gdawg 3 2,138 06-04-2011, 13:02
Last Post: waffles
  CLICK IMPORTANT IMPORTANT Deathless King 1 1,921 05-29-2011, 10:04
Last Post: d0h!
  [Release] AutoHotKey RapidFire Toggle Script Edited to work for Black Ops Rolled 12 20,165 01-08-2011, 19:08
Last Post: Ferrari

Forum Jump:


Users browsing this thread:
1 Guest(s)

Forum Powered By MyBB, Theme by © 2002-2024 Melroy van den Berg.