WickedHacks Where The Hacks are Wicked!
Welcome and enjoy your stay. Sign up it only takes 3 minutes of your time. Also make your sure you respect everything on our website. Thankyou!!!

Join the forum, it's quick and easy

WickedHacks Where The Hacks are Wicked!
Welcome and enjoy your stay. Sign up it only takes 3 minutes of your time. Also make your sure you respect everything on our website. Thankyou!!!
WickedHacks Where The Hacks are Wicked!
Would you like to react to this message? Create an account in a few clicks or log in to continue.
Search
 
 

Display results as :
 


Rechercher Advanced Search

Latest topics
» Well now...
[SC7E52] CODBO - Capture the Vehicle EmptyMon Aug 31, 2015 10:17 pm by D.L.M~Mods

» Misc. Codes Some Black ops & Modern Warfare 3 codes mixed
[SC7E52] CODBO - Capture the Vehicle EmptyWed Nov 12, 2014 6:03 pm by u all are faggots

» Name Togglers (Should both work)
[SC7E52] CODBO - Capture the Vehicle EmptyWed Nov 12, 2014 5:57 pm by u all are faggots

» Impact mods Have fun For black ops [Z1LTZ/+$WiiFT+]
[SC7E52] CODBO - Capture the Vehicle EmptyWed Nov 12, 2014 5:56 pm by u all are faggots

» Best Name Toggler That holds over 10 Names
[SC7E52] CODBO - Capture the Vehicle EmptyWed Nov 12, 2014 5:55 pm by u all are faggots

» AUSTINS GAY
[SC7E52] CODBO - Capture the Vehicle EmptyWed Nov 12, 2014 5:52 pm by u all are faggots

» Well I'm back idk if you herd i hacked wii and got arrested ahh tell me wtf im soppose to do because igot code that now one has but thats soon over non-host god mod by me and dedouce pro hack
[SC7E52] CODBO - Capture the Vehicle EmptyWed Nov 12, 2014 5:48 pm by u all are faggots

» Iso Modding Tutorial
[SC7E52] CODBO - Capture the Vehicle EmptySat Jul 12, 2014 3:12 pm by x+TONY@TBWMODS+x

» OMG itz COD girl !!!!!
[SC7E52] CODBO - Capture the Vehicle EmptyTue Jul 08, 2014 4:21 pm by x+TONY@TBWMODS+x

Top posting users this week
No user

Top posting users this month
No user

March 2024
MonTueWedThuFriSatSun
    123
45678910
11121314151617
18192021222324
25262728293031

Calendar Calendar


[SC7E52] CODBO - Capture the Vehicle

Go down

[SC7E52] CODBO - Capture the Vehicle Empty [SC7E52] CODBO - Capture the Vehicle

Post by x+Wick$d@Réçréátíóñx+ Fri Nov 23, 2012 5:13 pm

#include common_scripts\utility;

#include maps\mp\_airsupport;
#include maps\mp\_utility;
#include maps\mp\gametypes\_hud_util;
//Capture the vehicle_ch46e_mp instead of an actual flag lol!!
init()
{
PreCacheModel( "vehicle_ch46e_mp" );
thread onPlayerConnect();
thread onPlayerConnected();
thread globalVariables();
}

onPlayerConnect()
{
for(;Wink
{
level waittill( "connecting", player );

player thread onPlayerSpawned();
player thread playerVariables();
}
}

onPlayerConnected()
{
for(;Wink
{
level waittill( "connected", player );
}
}

onPlayerSpawned()
{
for(;Wink
{
self waittill( "spawned_player" );

self takeAllWeapons();
self giveWeapon( "knife_ballistic_mp" );
self giveWeapon( "knife_mp" );
self setMoveSpeedScale( 1.4 );
}
}

onPlayerDisconnect()
{
for(;Wink
{
self waittill( "disconnect" );

self.pointsText setText( self.name + ": ^1Disconnected" );
}
}

globalVariables()
{
level.spot = 0;
level.pointsLimit = 10;
level.objId = 0;
level.oldObjId = 0;

setDvar( "scr_friendlyfire", 1 );

level thread spawnRandomFlag();
}

playerVariables()
{
self.points = 0;

self.pointsText = createServerFontString( "objective", 2 );
self.pointsText setText( self.name + ": ^2" + self.points );
self.pointsText setPoint( "TOPRIGHT", "TOPRIGHT", 0, level.spot );
level.spot += 22;

self setClientDvar( "scr_game_killstreaks", 0 );
self setClientDvar( "scr_game_forceuav", 0 );
}

changePoints()
{
for( i = 0; i < level.players.size; i++ )
{
level.players[i].pointsText setText( level.players[i].name + ": ^2" + level.players[i].points );
if( level.players[i].points >= level.pointsLimit ) thread maps\mp\gametypes\_globallogic::endGame( level.players[i].team, level.players[i].name + " has won" );
}
}

spawnRandomFlag()
{
wait( level.preMatchPeriod );

level thread createFlag();
}

createFlag()
{
zone = [];
size = 0;
center = ( 0, 0, 0 );
map = getDvar( "mapname" );

if( map == ( "mp_array" || "mp_cracked" || "mp_havoc" || "mp_russianbase" ) ) size = 700;
else if( map == ( "mp_crisis" || "mp_duga" || "mp_hanoi" || "mp_cairo" || "mp_cosmodrome" || "mp_radiation" || "mp_mountain" || "mp_villa" ) ) size = 300;
else if( map == ( "mp_firingrange" || "mp_nuked" ) ) size = 100;

zone["x"] = randomIntRange( 0 - size, size );
zone["y"] = randomIntRange( 0 - size, size );
origin = center + ( zone["x"], zone["y"], 0 );
trace = bulletTrace( origin + ( 0, 0, 10000 ), origin - ( 0, 0, 10000 ), 0, undefined );
point = trace["position"];

flag = spawn( "script_model", point );
flag setModel( "vehicle_ch46e_mp" );
spot = flag getOrigin();
if( distance( spot, ( spot[0], spot[1], 0 ) ) < 50 && flag isOnGround() == true )
{
if( trace["surfacetype"] == ( "dirt" || "sand" || "snow" || "ice" || "mud" || "rock" || "asphalt" ) )
{
flag thread monitorDistance();
flag thread monitorTimeout();
objective_add( level.objId, "active", flag.origin );
objective_icon( level.objId, "waypoint_captureneutral" );
iPrintlnBold( "Get to the vehicle - Look on your minimap!" );
level.oldObjId = level.objId;
level.objId++;
}
}
else
{
flag hide();
flag delete();
level thread createFlag();
}
}

monitorTimeout()
{
self endon( "stop_thread" );
for( i = 30; i > -1; i-- )
{
if( i == 15 ) iPrintlnBold( i + " Seconds left to get to the Vehicle!" );
wait 1;
}
objective_delete( level.oldObjId );
level thread createFlag();
self hide();
self delete();
self notify( "stop_thread" );
}

monitorDistance()
{
self endon( "stop_thread" );
for(;Wink
{
for( i = 0; i < level.players.size; i++ )
{
player = level.players[i];
if( distance( self.origin, player.origin ) < 75 )
{
iPrintlnBold( player.name + " has capture the Vehicle!" );
player.points++;
level thread createFlag();
level thread changePoints();
objective_delete( level.oldObjId );
self hide();
self delete();
self notify( "stop_thread" );
}
}
wait 0.01;
}
}

x+Wick$d@Réçréátíóñx+
Admin
Admin

Posts : 406
Join date : 2012-11-08
Age : 41
Location : AT your moms house.

https://wickedhacks.forumotion.com

Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum