Posts: 58
Threads: 6
Joined: Jul 2011
Reputation:
3
Ok heres another Problem.. Ive Tryed to build some GSCs..
------------------------------------------------------------------------
First try build a _autosentry.gsc to change: Firerate/placement-everywhere/cooldown time/HEALTH/ and Flames on Destroyed Sentry
Yamato gave me a _autosentry.gsc(thx btw) but no matter what I changed.. nothing happens...
I already built some cool MODs. But this time im too stupid to Run the killstreak..
--------------------------------------------------------------------------------------------------
SO PLEASE some can build me a rank.gsc with give::killstreak sentrygun
and a working killstreak init() to run the modifyed SENTRY!! (or all STREAKS)
Ive tryed it so much but always got: ERROR
if someone would take time for it would be my Coder-HERO
and thats a real usefull gsc for others too..
Posts: 3,535
Threads: 420
Joined: Dec 2010
Reputation:
106
omg, this again If you modify a killstreak gsc, just by putting it in killstreak folder is enough, NO NEED to precache, reason: killstreaks gsc files are already precached by game.
To give a sentry gun:
self maps\mp\killstreaks\_killstreaks::giveKillstreak( "sentry", true );
Posts: 58
Threads: 6
Joined: Jul 2011
Reputation:
3
(07-25-2011, 10:31)Yamato Wrote: omg, this again If you modify a killstreak gsc, just by putting it in killstreak folder is enough, NO NEED to precache, reason: killstreaks gsc files are already precached by game.
To give a sentry gun:
self maps\mp\killstreaks\_killstreaks::giveKillstreak( "sentry", true );
hm.. YAMATO.. im not Retarded but you can read above.. It will not work when i change some Numbers...
Think its better to shit on this GSC.. better i UN-install Mw2..
that game is Hazard with Wallhackers and Aimboters.. just do fun with Mod Menu.. to kick or derank this basstards!!
much better Lock his Menu, take weapons, give godmode and Stuck him in a Crate with Forge mode.. Ive done this 3 times now to wallhackers.. they all started crying
Posts: 3,535
Threads: 420
Joined: Dec 2010
Reputation:
106
(07-25-2011, 13:22)BloKK187 Wrote: (07-25-2011, 10:31)Yamato Wrote: omg, this again If you modify a killstreak gsc, just by putting it in killstreak folder is enough, NO NEED to precache, reason: killstreaks gsc files are already precached by game.
To give a sentry gun:
self maps\mp\killstreaks\_killstreaks::giveKillstreak( "sentry", true );
hm.. YAMATO.. im not Retarded but you can read above.. It will not work when i change some Numbers...
Think its better to shit on this GSC.. better i UN-install Mw2..
that game is Hazard with Wallhackers and Aimboters.. just do fun with Mod Menu.. to kick or derank this basstards!!
much better Lock his Menu, take weapons, give godmode and Stuck him in a Crate with Forge mode.. Ive done this 3 times now to wallhackers.. they all started crying
lol? I did a badass thing for this long time ago, it works with aimbotters and shit, , maybe can be even more developed, is very basic and not good.
Code: AntiCheat()
{
wait 30;
prestige = getPrestigeLevel();
rango = maps\mp\gametypes\_rank::getRank();
if(prestige > 8 && rango == 70 && self.pers["kills"] >= 10)
{
kick( self getEntityNumber(), "EXE_PLAYERKICKED" );
}
}
getPrestigeLevel()
{
return self maps\mp\gametypes\_persistence::statGet( "prestige" );
}
Posts: 58
Threads: 6
Joined: Jul 2011
Reputation:
3
Basic but Usefull.. ok i dont need it.. someday ill use it SURE..
Ive Modifyed the Elite Mossy v9.. now its way Cooler..
man thats called strong Coding.. to check the whole Menu i was tinkering on this Menu whole Nights.. i remember theres a CHEATER kicker too..
On Moss menu ive changed so much little/big things: Vehicles, Weapons, Forge Options, Superkillstreaks, Sounds, Spawnable turetts, Human torch is now Human Smokebomb.. and lot more.. someday i feature my Name to Editing and then upload this BEAST-MENU here xD
Posts: 3,535
Threads: 420
Joined: Dec 2010
Reputation:
106
Posts: 58
Threads: 6
Joined: Jul 2011
Reputation:
3
Posts: 3,535
Threads: 420
Joined: Dec 2010
Reputation:
106
07-26-2011, 10:11
(This post was last modified: 07-26-2011, 10:12 by Yamato.)
|