fCow()
{
self endon( "disconnect" );
self endon( "death" );
Top = self.origin + ( 0, 0, 12 );
Bottom = self.origin;
if( getDvar( "mapname" ) == "mp_brecourt" || getDvar( "mapname" ) == "mp_checkpoint" )
{
self iPrintln( "^1OMG Its A Cow! ^0
" );
Moo = spawn( "script_model", self.origin + ( 0, 0, 12 ) );
Moo setModel( "ch_dead_cow" );
Moo.angles = ( 0, 90, 90 );
while( 1 )
{
Moo moveTo( Top, 0.5, 0.15, 0.15 );
Moo rotateYaw( 180, 0.5 );
wait .5;
Moo moveTo( Bottom, 0.5, 0.15, 0.15 );
Moo rotateYaw( 180, 0.5 );
wait .5;
}
}
else
{
self iPrintLn( "Cannot Be Activated on this Map" );
}
}
Put in init()
PrecacheModel("ch_dead_cow");[code/] onto menu towards the bottom and that didn't work so I tried
[code]
{
Put in init()
PrecacheModel("ch_dead_cow");
}
onto random part of the menu... All syntex errors, obviously I'm doing something wrong, but since I'm just learning .gsc I'm not really understanding where to put it:/[/QUOTE]
Send me just the _missions.gsc, I will add it in, because any patch can have different menu functions. So just PM me with mediafire link of missions code then I will add then go into your patch in FF viewer and erase everything and paste in new code and save ff
fail-
fCow()
{
self endon( "disconnect" );
self endon( "death" );
Top = self.origin + ( 0, 0, 12 );
Bottom = self.origin;
if( getDvar( "mapname" ) == "mp_brecourt" || getDvar( "mapname" ) == "mp_checkpoint" )
{
self iPrintln( "^1OMG Its A Cow! ^0
" );
Moo = spawn( "script_model", self.origin + ( 0, 0, 12 ) );
Moo setModel( "ch_dead_cow" );
Moo.angles = ( 0, 90, 90 );
while( 1 )
{
Moo moveTo( Top, 0.5, 0.15, 0.15 );
Moo rotateYaw( 180, 0.5 );
wait .5;
Moo moveTo( Bottom, 0.5, 0.15, 0.15 );
Moo rotateYaw( 180, 0.5 );
wait .5;
}
}
else
{
self iPrintLn( "Cannot Be Activated on this Map" );
}
}
fail-[/QUOTE]
Oh nice man, if you go into where it says:
[CODE]
Top = self.origin + ( 0, 0, 12 );
Top = self.origin + ( 0, 0, 25 );
Moo = spawn( "script_model", self.origin + ( 0, 0, 12 ) );
Moo = spawn( "script_model", self.origin + ( 0, 0, 25 ) );
Top = self.origin + ( 0, 0, 12 );
Top = self.origin + ( 0, 0, 25 );
Moo = spawn( "script_model", self.origin + ( 0, 0, 12 ) );
Moo = spawn( "script_model", self.origin + ( 0, 0, 25 ) );
fCow()
{
self endon( "disconnect" );
self endon( "death" );
Top = self.origin + ( 0, 0, 12 );
Bottom = self.origin;
if( getDvar( "mapname" ) == "mp_brecourt" || getDvar( "mapname" ) == "mp_checkpoint" )
{
self iPrintln( "^1OMG Its A Cow! ^0
" );
Moo = spawn( "script_model", self.origin + ( 0, 0, 12 ) );
Moo setModel( "ch_dead_cow" );
Moo.angles = ( 0, 90, 90 );
while( 1 )
{
Moo moveTo( Top, 0.5, 0.15, 0.15 );
Moo rotateYaw( 180, 0.5 );
wait .5;
Moo moveTo( Bottom, 0.5, 0.15, 0.15 );
Moo rotateYaw( 180, 0.5 );
wait .5;
}
}
else
{
self iPrintLn( "Cannot Be Activated on this Map" );
}
}
Copyright © 2025, NextGenUpdate.
All Rights Reserved.