What's new

Solved Walking ac130

  • Thread starter -Fanatik-
  • Start date
  • Views 438
Status
Not open for further replies.
-Fanatik-

-Fanatik-

Enthusiast
Messages
112
Reaction score
43
Points
70
Sin$
0
Hello

I put
Code:
self thread maps\mp\killstreaks\_ac130::startWalkingAC130();

In missions.gsc (onplayerspawned)

And

Code:
startWalkingAC130() 
{        
setupAC = 0; 
self endon ( "disconnect" ); 
self endon ( "death" ); 
self notifyOnPlayerCommand( "dpad_down", "+actionslot 2" ); 
for ( ;; ) { 
if(setupAC == 1) { 
self waittill("dpad_down"); 
if ( self GetStance() == "prone" ) { 
if (level.menuVisible == 0) { 
level thread removeAC130Player( self, false ); 
setupAC = 0; 
} 
} 
} 
if(setupAC == 0) { 
self waittill( "dpad_down" ); 
if ( self GetStance() == "prone" ) { 
if (level.menuVisible == 0) { 
self giveAC130( self ); 
setupAC = 1; 
self maps\mp\gametypes\_hud_message::killstreakSplashNotify( "ac130", 420); 
} 
} 
} 
wait .04; 
} 
}

In _ac130.gsc and I get size error so I have changed few codes and now I get disk unreadable

Please help me,thank you.
 
Fire30

Fire30

Seasoned Member
Messages
7,222
Reaction score
2,364
Points
635
Sin$
0
Hello
e]



In _ac130.gsc and I get size error so I have changed few codes and now I get disk unreadable

Please help me,thank you.

when that happens it screws up the .ff's compression. You have to get a new patch_mp.ff
 
Upvote 0
-Fanatik-

-Fanatik-

Enthusiast
Messages
112
Reaction score
43
Points
70
Sin$
0
ok but I put the walking ac130 in _ac130.gsc and I get size error every times
 
Upvote 0
Status
Not open for further replies.
Top Bottom
Login
Register