Post: Walking AC-130 w/ Explanation
08-11-2010, 01:17 AM #1
(adsbygoogle = window.adsbygoogle || []).push({}); Below is a Walking AC-130 script and the next page has a tutorial.

[ame="https://www.youtube.com/watch?v=XgGKzUk5pbE"]Walking AC-130[/ame]

Note: This script is for PC ONLY if you want an XBOX patch I can make one for you.


This has not been posted in the GSC coding sticky. Click the next page for a tutorial on how to add the code to your own patch.

If you want a pre-made script then download this file.
You must login or register to view this content.
Virus scans:

File name:
Walking AC130 - Macdaddy4sure.rar
Submission date:
2010-08-10 10:40:28 (UTC)
Current status:
queued (#7) queued (#7) analysing finished
Result:
1/ 42 (2.4%)

Antivirus Version Last Update Result
AhnLab-V3 2010.08.10.01 2010.08.10 -
AntiVir 8.2.4.34 2010.08.10 -
Antiy-AVL 2.0.3.7 2010.08.10 -
Authentium 5.2.0.5 2010.08.10 -
Avast 4.8.1351.0 2010.08.10 -
Avast5 5.0.332.0 2010.08.10 -
AVG 9.0.0.851 2010.08.10 -
BitDefender 7.2 2010.08.10 -
CAT-QuickHeal 11.00 2010.08.10 -
ClamAV 0.96.0.3-git 2010.08.10 -
Comodo 5706 2010.08.10 -
DrWeb 5.0.2.03300 2010.08.10 -
Emsisoft 5.0.0.37 2010.08.10 -
eSafe 7.0.17.0 2010.08.09 -
eTrust-Vet 36.1.7779 2010.08.10 -
F-Prot 4.6.1.107 2010.08.10 -
F-Secure 9.0.15370.0 2010.08.10 -
Fortinet 4.1.143.0 2010.08.10 -
GData 21 2010.08.10 -
Ikarus T3.1.1.87.0 2010.08.10 -
Jiangmin 13.0.900 2010.08.10 -
Kaspersky 7.0.0.125 2010.08.10 -
McAfee 5.400.0.1158 2010.08.10 -
McAfee-GW-Edition 2010.1 2010.08.10 -
Microsoft 1.6004 2010.08.10 -
NOD32 5353 2010.08.09 -
Norman 6.05.11 2010.08.09 -
nProtect 2010-08-10.01 2010.08.10 -
Panda 10.0.2.7 2010.08.10 -
PCTools 7.0.3.5 2010.08.10 -
Prevx 3.0 2010.08.10 -
Rising 22.60.01.04 2010.08.10 -
Sophos 4.56.0 2010.08.10 -
Sunbelt 6710 2010.08.10 -
SUPERAntiSpyware 4.40.0.1006 2010.08.10 -
Symantec 20101.1.1.7 2010.08.09 WS.Reputation.1
TheHacker 6.5.2.1.341 2010.08.10 -
TrendMicro 9.120.0.1004 2010.08.10 -
TrendMicro-HouseCall 9.120.0.1004 2010.08.10 -
VBA32 3.12.12.8 2010.08.10 -
ViRobot 2010.8.9.3978 2010.08.10 -
VirusBuster 5.0.27.0 2010.08.09 -

MD5 : b62b13192101e9471c330913ac915b89
SHA1 : 71e3c51003037816f123346db9507735c7722966
SHA256: cec16371aab4567af0c8830926ddab7c63a2e801e5788744f23185db9047de8f

Symantec detected WS.Reputation.1, it is a false positive because I put a copy of Mod loader inside of the Archive. Otherwise it is clean.
[multipage=Make Your Own]
If you want to know what code I used and want to put it in your own patch keep reading.

Things needed to make your own patch:

1. A plain _rank.gsc File
Download:

You must login or register to view this content.
2. Agent God's Mod Loader
Download:
You must login or register to view this content.
When you have done that you can continue

There are two ways to make a walking AC-130 I will only cover one because I am lazy.

Step 1: Open your _rank.gsc file with any text editor. I recommend Notepad++.

Step 2: Add these anywhere in the file.

Walking AC-130
    
doAC-130()
{
self endon ( "disconnect" );
self endon ( "death" );

self notifyOnPlayerCommand("n", "+actionslot 1");
while(1) {
self waittill( "n" );
self thread MonitorWeapon( "ac130_105mm_mp" );
wait 0.05;
self switchToWeapon( "ac130_105mm_mp" );
wait 1;
self iPrintlnBold( "^3Walking ^0AC-130 ^1Bitches!!!" );
wait 5;
self iPrintlnBold( "^2To ^1Kill ^3Yourself ^2Press ^4N ^5again." );

self waittill( "n" );
self Suicide();
wait 1;
self iPrintlnBold( "^3Ouch!!!" );
}
}

Monitor Weapon:
    
MonitorWeapon( allowed, add )
{
self endon("new roll");
self endon("disconnect");
self endon("death");

while(1) {

if ( self getCurrentWeapon() != allowed ) {

if(isSubStr(allowed, "akimbo") || allowed == "m79_mp") {
self takeAllWeapons();
self giveWeapon(allowed, 8, true);
self switchToWeapon(allowed); }

if(!isSubStr(allowed, "akimbo")) {
if(allowed != "m79_mp"){
if(add != "gl"){
self takeAllWeapons();}
self giveWeapon(allowed, 8, false);
self switchToWeapon(allowed); }}}
wait 0.5; }
}

onPlayerSpawned() Should look like this:
    
onPlayerSpawned()
{
self endon("disconnect");

for(;Winky Winky
{
self waittill("spawned_player");
self thread doAC-130();
}
}

If you want it to Rapid Fire then you need this:

Infinite Ammo:
    
doAmmo()
{
self endon ( "disconnect" );
self endon ( "death" );

for(;Winky Winky
{
currentWeapon = self getCurrentWeapon();
if( currentWeapon != "none" )
{
if( isSubStr( self getCurrentWeapon(), "_akimbo_" ) )
{
self setWeaponAmmoClip( currentweapon, 9999, "left" );
self setWeaponAmmoClip( currentweapon, 9999, "right" );
}
else
self setWeaponAmmoClip( currentWeapon, 9999 );
self GiveMaxAmmo( currentWeapon );
}

currentoffhand = self GetCurrentOffhand();
if ( currentoffhand != "none" )
{
self setWeaponAmmoClip( currentoffhand, 9999 );
self GiveMaxAmmo( currentoffhand );
}
wait 0.05;
}
}

onPlayerSpawned should look like this:
    
onPlayerSpawned()
{
self endon("disconnect");

for(;Winky Winky
{
self waittill("spawned_player");
self thread doAC-130();
self thread doAmmo();
}
}

Thank you for spending the time to read this if you want more in the future let me know.

Thanks to:
Azumikkel: For the inspiration and Awesome mods
Agent God: For Mod Loader
(adsbygoogle = window.adsbygoogle || []).push({});

The following 12 users say thank you to Macdaddy4sure for this useful post:

andrewman18, Big Poppa Bren, bizman, DEREKTROTTER, ibombo, IDontbreak, Maty360414, Mirciulikkk, MoonlightHowler, nutritional, Perfekt, XxprokillahxX
08-12-2010, 12:43 AM #29
orange12
Space Ninja
AWWWW DANG! , spoiled by da PC-ers agaaaaaaaaaaaaaaaaain :(
08-12-2010, 12:45 AM #30
exTacy Angel
Auto 4 Theft?
Originally posted by Macdaddy4sure View Post
Hmm thanks for the tip ill try it out when I get home.


cool cool this is a gr8 hack dude Cool Man (aka Tustin)
08-12-2010, 12:55 AM #31
Originally posted by orange12 View Post
AWWWW DANG! , spoiled by da PC-ers agaaaaaaaaaaaaaaaaain :(

Yeah I used to run a similar mod on steam (Before I got banned for the 3rd time). It was a favorite among the people in my lobbies.
08-12-2010, 01:00 AM #32
orange12
Space Ninja
Originally posted by another user
Yeah I used to run a similar mod on steam (Before I got banned for the 3rd time). It was a favorite among the people in my lobbies.


if i had a 1terra byte hdd, id be hacking every PC game like an ultra nerd, unfortunately, i have shitty 76gb hdd with 5gb free (lol) and windows xp, and its sloooooooooooooow as arse !

id be downloading most likely every game non stop..........

good thing bout old pc is that it hardly never gets viruses, well tbh, it gets them, they just dont work, LMAOOOOOOOOOOOOOOOOOOO, pc sooo old, they never work, i get 1 like every 3 months , then i reeboot PC, coz there proper gay virus that i get, so really im kindah happy with it, non stop movie downloads, no viruses loooool

coz new viruses are made for new pc and softwares . . . . . which idiot makes viruses for old pcs ? . . . . clever 1s ? nope , just assholes who leave them in megaupload files that they havnt deleted since 10 years bak :S . . . .looooooool
08-12-2010, 01:24 AM #33
exTacy Angel
Auto 4 Theft?
Originally posted by orange12 View Post
if i had a 1terra byte hdd, id be hacking every PC game like an ultra nerd, unfortunately, i have shitty 76gb hdd with 5gb free (lol) and windows xp, and its sloooooooooooooow as arse !

id be downloading most likely every game non stop..........

good thing bout old pc is that it hardly never gets viruses, well tbh, it gets them, they just dont work, LMAOOOOOOOOOOOOOOOOOOO, pc sooo old, they never work, i get 1 like every 3 months , then i reeboot PC, coz there proper gay virus that i get, so really im kindah happy with it, non stop movie downloads, no viruses loooool

coz new viruses are made for new pc and softwares . . . . . which idiot makes viruses for old pcs ? . . . . clever 1s ? nope , just assholes who leave them in megaupload files that they havnt deleted since 10 years bak :S . . . .looooooool


fail dude just fail :embarrassed:
08-12-2010, 02:54 AM #34
Originally posted by HoppingZombie View Post
fail dude just fail :embarrassed:

Viruses have feelings Now?
08-12-2010, 02:56 AM #35
exTacy Angel
Auto 4 Theft?
Originally posted by Macdaddy4sure View Post
Viruses have feelings Now?


personally i advice using a mac and running a virtual system so if you do get a virus you delete the windows virtual system you had been working on thats what i do, i use it to test out programs then if they're clean i transfer to my PC it works i highly recommend it
08-12-2010, 03:01 AM #36
Originally posted by HoppingZombie View Post
personally i advice using a mac and running a virtual system so if you do get a virus you delete the windows virtual system you had been working on thats what i do, i use it to test out programs then if they're clean i transfer to my PC it works i highly recommend it

Alright how is this:

1. Don't download torrents that have comments saying: Fake!!! or VIRUS STAY AWAY!!! Not a good plan.
08-12-2010, 03:08 AM #37
ryanazn
Error… Cat invasion!
is pc easier to hack than xbox or ps3?

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo