
09-01-2002, 12:32 AM
as far as the med kits and stuff ... im not sure ... i never messed with that.....
minefield how to ....
i am going to post the original global/minefield.scr and then a modified one like the one i used in g3mini compound. i will point out the changes in the modified one.....
first the original script....
minefield local.index:
minefield_loop:
$minefield[local.index] waittill trigger
local.sucker = parm.other
local.sucker playsound mine_trigger
wait (randomfloat .5 + .5)
if (local.sucker istouching $minefield[local.index] == 1)
{
local.spawn_mine = (local.sucker.targetname + "_mine")
if ($minefield[local.index].type == "water")
{
spawn animate/fx_mortar_water targetname local.spawn_mine
local.spawn_mine = $(local.sucker.targetname + "_mine")
local.spawn_mine.origin = local.sucker.origin
local.spawn_mine anim start
local.spawn_mine playsound grenade_exp_water
//$player exec global/bullethit.scr (0 -1 0) 1000 50 1
radiusdamage local.spawn_mine.origin 4000 256
}
else
{
spawn animate/fx_explosion_mine targetname local.spawn_mine
local.spawn_mine = $(local.sucker.targetname + "_mine")
local.spawn_mine.origin = local.sucker.origin
local.spawn_mine anim start
//$player exec global/bullethit.scr (0 -1 0) 1000 50 1
radiusdamage local.spawn_mine.origin 4000 256
}
//*** remove the effect
wait 3
local.spawn_mine remove
}
goto minefield_loop
end
//**************************************
//*** single version minefield thread
minefield_single:
$minefield waittill trigger
wait (randomfloat .5 + .5)
if ($player istouching $minefield == 1)
{
spawn animate/fx_explosion_mine targetname player_mine_of_doom
$player_mine_of_doom.origin = $player.origin
$player_mine_of_doom anim start
$player exec global/bullethit.scr (0 -1 0) 1000 50 1
}
else
{
goto minefield_single
}
end
//*************************************************
//*** setup the minefields
//*** the level scripts should call this thread
//*************************************************
minefield_setup:
if ($minefield == NULL)
{
println "^~^~^ There are no minefields in the map!!!"
goto minefield_setup_end
}
/*
if ($minefield.size == 1)
{
thread minefield_single
goto minefield_setup_end
}
*/
for (local.i = 1 ; local.i <= $minefield.size ; local.i ++)
{
thread minefield local.i
}
minefield_setup_end:
end
now the one i used that i modified ......
minefield local.index:
minefield_loop:
$minefield[local.index] waittill trigger
local.sucker = parm.other
if (local.sucker.dmteam != axis) // <------ I added this line
goto minefield_loop // <------- and this line .... this will trigger the mine for any axis player ... if you want it for the allies then change the axis to say allies in the line above .... thats all there is to it
local.sucker playsound mine_trigger
wait (randomfloat .5 + .5)
if (local.sucker istouching $minefield[local.index] == 1)
{
local.spawn_mine = (local.sucker.targetname + "_mine")
if ($minefield[local.index].type == "water")
{
spawn animate/fx_mortar_water targetname local.spawn_mine
local.spawn_mine = $(local.sucker.targetname + "_mine")
local.spawn_mine.origin = local.sucker.origin
local.spawn_mine anim start
local.spawn_mine playsound grenade_exp_water
//$player exec global/bullethit.scr (0 -1 0) 1000 50 1
radiusdamage local.spawn_mine.origin 4000 256
}
else
{
spawn animate/fx_explosion_mine targetname local.spawn_mine
local.spawn_mine = $(local.sucker.targetname + "_mine")
local.spawn_mine.origin = local.sucker.origin
local.spawn_mine anim start
//$player exec global/bullethit.scr (0 -1 0) 1000 50 1
radiusdamage local.spawn_mine.origin 4000 256
}
//*** remove the effect
wait 3
local.spawn_mine remove
}
goto minefield_loop
end
//**************************************
//*** single version minefield thread
minefield_single:
$minefield waittill trigger
wait (randomfloat .5 + .5)
if ($player istouching $minefield == 1)
{
spawn animate/fx_explosion_mine targetname player_mine_of_doom
$player_mine_of_doom.origin = $player.origin
$player_mine_of_doom anim start
$player exec global/bullethit.scr (0 -1 0) 1000 50 1
}
else
{
goto minefield_single
}
end
//*************************************************
//*** setup the minefields
//*** the level scripts should call this thread
//*************************************************
minefield_setup:
if ($minefield == NULL)
{
println "^~^~^ There are no minefields in the map!!!"
goto minefield_setup_end
}
/*
if ($minefield.size == 1)
{
thread minefield_single
goto minefield_setup_end
}
*/
for (local.i = 1 ; local.i <= $minefield.size ; local.i ++)
{
thread minefield local.i
}
minefield_setup_end:
end
*** now that you have your modified minefield script ... rename it something different like mymap_minefield.scr In your main script call the up the script like this.... change the name of course to whatever you named it....
thread maps/obj/mymap_minefield.scr::minefield_setup
.....just make sure the path is correct... my map was an obj map
the last question you have can be a bit more complicated....
where are you trying to increase the fps ? in the buildings area or in the 1/4 outside area ?
depending on where, you can use manual vis to help out outside areas. I am going to provide g3mini compound map for download as this should help out some mappers out there. In it I use a variety of techniques, including manual vis. Check back in these forums soon for when I upload it to my personal webspace for download.
-g3mini
|