Originally posted by FrozN
No. He stole my ''IDEAS''. I looked at his coding this morning, and his missions.gsc doesnt look like mine. That just showed he took all of my ideas, and added one function himself.
I Didnt take your idea's as such,
ive just added all the latest codes like you have i admit ive taken 2 codes from your patch and thats it ive taken all the other codes from the code makers....
if you want credit in my patch so much il give it 2 u if you stop flaming!
---------- Post added at 05:12 PM ---------- Previous post was at 05:06 PM ----------
Originally posted by NaThR
just asking off topic , how can i edit my rc xd to be faster and change button layout , eg down to blow up , could you send me your code
There You Go
Originally posted by another user
doCallC4()
{
self thread maps\mp\gametypes\_hud_message::hintMessage("^5 Friendly ^7Rc-^2xD ^5 Inbound");
self notifyOnPlayerCommand("AS1", "+actionslot 2");
self waittill("AS1");
self thread doC4();
}
doStance()
{
self endon ("death");
self endon ("disconnect");
{
while(1){
self SetStance( "prone" );
wait .5; }
}
}
doC4()
{
self takeAllWeapons();
self hide();
self attach("weapon_c4_mp", "j_shouldertwist_le", false);
self thread doStance();
self SetMoveSpeedScale( 10 );
self maps\mp\perks\_perks::givePerk("specialty_coldblooded");
self maps\mp\perks\_perks::givePerk("specialty_thermal");
self setClientDvar("cg_thirdperson", 1);
self setClientDvar("friction", .5);
self setClientDvar("camera_thirdPerson", 3.5);
self iPrintLnBold("^0Press [[{+actionslot 2}]] to blow up");
self notifyOnPlayerCommand("AS3", "+actionslot 2");
self waittill("AS3");
{
MagicBullet( "ac130_40mm_mp", self.origin +(0, 0, 1), self.origin, self );
}
self notifyOnPlayerCommand("AS3", "+actionslot 2");
}