Page 1 of 1

help! Script Problem

Posted: Fri Dec 19, 2003 11:58 pm
by BiG_HeaD
The following is my Script. Yes it works, But i need To add bots To it, and dont know what goes where. Can someone tell me what to add?

// Custom objective test map
// ARCHITECTURE: Bjarne Gr?nnevik
// SCRIPTING: Bjarne Gr?nnevik

main:

setcvar "g_obj_alliedtext1" "Go2Town"
setcvar "g_obj_alliedtext2" "KillSumAxis"
setcvar "g_obj_alliedtext3" "FindtheBomb"
setcvar "g_obj_axistext1" "- Prevent Allies from"
setcvar "g_obj_axistext2" "destroying the Flak88's"
setcvar "g_obj_axistext3" "MadeBy BiG_HeaD"
setcvar "g_scoreboardpic" "objdm1.tga"



level waittill prespawn


exec global/DMprecache.scr
exec global/ambient.scr m4l1
level.script = maps/obj/hunt2bot.scr

$world farplane_color ".333 .333 .329"
level.fogplane = 3000
$world farplane level.fogplane

thread global/exploder.scr::main // Initialize the exploder subsystem


level waittill spawn


level.defusing_team = "axis" // Axis like the bombs unplanted
level.planting_team = "allies" // Allies will try to plant the bombs
level.targets_to_destroy = 1 // Number of targets in this map
level.bomb_damage = 99 // Default damage of the bomb
level.bomb_explosion_radius = 2048 // Default radius of bomb blast


// Set the parameters for round based match
level.dmrespawning = 0 // 1 or 0 (0=no respawn)
level.dmroundlimit = 5 // round time limit in minutes
level.clockside = axis // set to axis, allies, kills, or draw


// level waittill roundstart // Comment out this line using '//' before it to be able to set the bomb when alone on the map ( just for testing )


$panel_bomb thread global/obj_dm.scr::bomb_thinker // "panel_bomb" is the targetname set on the bomb in MOHRadiant
thread allies_win_bomb // Start the win check thread for allies
$panel_bomb thread axis_win_timer // Start the win check thread for axis
end // end of main

// Allied victory test


allies_win_bomb:
while(level.targets_destroyed < level.targets_to_destroy) // While undestroyed objectives left
waitframe // chill out
teamwin allies // No objectives left allies win
end // end allied victory test

// Axis victory test


axis_win_timer:
level waittill axiswin // At the end Axis win
end // end axis victory test

spawn

Posted: Sat Dec 20, 2003 3:20 am
by tltrude
Add Allied spawn points to the map.

Posted: Sat Dec 20, 2003 3:27 am
by BiG_HeaD
Allies? What? Their is. lol

Posted: Sat Dec 20, 2003 8:49 am
by tltrude