Alliedassault           
FAQ Calendar
Go Back   Alliedassault > Lounge > Tech Questions & Problems
Reload this Page Scripts, Scripts, Scripts
Tech Questions & Problems Ask our resident experts about any military shooter game server administration and other technical issues.

Reply
 
Thread Tools Display Modes
Scripts, Scripts, Scripts
Old
  (#1)
tarik2 is Offline
Junior Member
 
Posts: 2
Join Date: Oct 2002
   
Default Scripts, Scripts, Scripts - 10-13-2002, 07:45 AM

I have a general understanding of what the script is for, but I can't figure out how to make one for a map I am creating.

Could someone let me know how, or push me in the right direction??

Thx
  
Reply With Quote
Old
  (#2)
HkySk8r187 is Offline
Member
 
Posts: 57
Join Date: Jun 2002
Location: California
  Send a message via AIM to HkySk8r187 Send a message via MSN to HkySk8r187 Send a message via Yahoo to HkySk8r187  
Default 10-16-2002, 01:10 PM

What kind of script are you trying to create? Just the map script? If you're trying to make that...it's pretty easy..open up notepad and put it all in there and save it as a txt file, then rename it from a .txt to a .scr. Here is a sample script for my BridgeCrossing map I made a while back...be sure to change everything that I put in bold to correspond to your map.

Also, the name of the file must be the same as your bsp. For instance, in my case my file was BridgeCrossing.bsp, so this file is named BridgeCrossing.scr

// Bridge Crossing
// ARCHITECTURE: Chad "HkySk8r187" Grenier
// SCRIPTING: Chad "HkySk8r187" Grenier

main:

// set scoreboard messages
setcvar "g_obj_alliedtext1" "Cross the Bridge"
setcvar "g_obj_alliedtext2" "and get to Flag"
setcvar "g_obj_alliedtext3" "Before the Axis!"
setcvar "g_obj_axistext1" "Cross the Bridge"
setcvar "g_obj_axistext2" "and get to Flag"
setcvar "g_obj_axistext3" "Before the Allies!"

setcvar "g_scoreboardpic" "BridgeCrossing"

// call additional stuff for playing this map round based is needed
if(level.roundbased)
thread roundbasedthread

exec global/ambient.scr BridgeCrossing

level waittill prespawn

//*** Precache Dm Stuff
exec global/DMprecache.scr

//Script to create fog
$world farplane_color "0.752941 0.752941 0.752941" //fog color
level.fogplane = 2800 //visibility
$world farplane level.fogplane //there is fog
$world farplane 2800
$world farplane_color (0.752941 0.752941 0.752941)
//just delete this lines if you dont want fog

level.script = maps/obj/BridgeCrossing.scr

level waittill spawn

level waittill roundstart

end

//-----------------------------------------------------------------------------

roundbasedthread:

// Can specify different scoreboard messages for round based games here.

level waittill prespawn

level waittill spawn

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

level waittill roundstart

end

//*** --------------------------------------------
//*** "Axis Victory"
//*** --------------------------------------------
axis_win_timer:
level waittill axiswin
end
//*** --------------------------------------------
//*** "Allied Victory"
//*** --------------------------------------------
teamwin allies
end

//The following you will not need in your script, but I will leave them so you can see how I wrote my custom scripts to do specific things required in my map. If you have played my map you will know what these three threads do.

AlliesAtFlag:
local.player = parm.other
if (local.player.dmteam == "allies")
{
teamwin allies
}
end

AxisAtFlag:
local.player = parm.other
if (local.player.dmteam == "axis")
{
teamwin axis
}
end

felloffbridge:
local.player = parm.other
local.player kill
end
  
Reply With Quote
Old
  (#3)
HkySk8r187 is Offline
Member
 
Posts: 57
Join Date: Jun 2002
Location: California
  Send a message via AIM to HkySk8r187 Send a message via MSN to HkySk8r187 Send a message via Yahoo to HkySk8r187  
Default 10-16-2002, 01:12 PM

What kind of script are you trying to create? Just the map script? If you're trying to make that...it's pretty easy..open up notepad and put it all in there and save it as a txt file, then rename it from a .txt to a .scr. Here is a sample script for my BridgeCrossing map I made a while back...be sure to change everything that I put in bold to correspond to your map.

Also, the name of the file must be the same as your bsp. For instance, in my case my file was BridgeCrossing.bsp, so this file is named BridgeCrossing.scr

// Bridge Crossing
// ARCHITECTURE: Chad "HkySk8r187" Grenier
// SCRIPTING: Chad "HkySk8r187" Grenier

main:

// set scoreboard messages
setcvar "g_obj_alliedtext1" "Cross the Bridge"
setcvar "g_obj_alliedtext2" "and get to Flag"
setcvar "g_obj_alliedtext3" "Before the Axis!"
setcvar "g_obj_axistext1" "Cross the Bridge"
setcvar "g_obj_axistext2" "and get to Flag"
setcvar "g_obj_axistext3" "Before the Allies!"

setcvar "g_scoreboardpic" "BridgeCrossing"

// call additional stuff for playing this map round based is needed
if(level.roundbased)
thread roundbasedthread

exec global/ambient.scr BridgeCrossing

level waittill prespawn

//*** Precache Dm Stuff
exec global/DMprecache.scr

//Script to create fog
$world farplane_color "0.752941 0.752941 0.752941" //fog color
level.fogplane = 2800 //visibility
$world farplane level.fogplane //there is fog
$world farplane 2800
$world farplane_color (0.752941 0.752941 0.752941)
//just delete this lines if you dont want fog

level.script = maps/obj/BridgeCrossing.scr

level waittill spawn

level waittill roundstart

end

//-----------------------------------------------------------------------------

roundbasedthread:

// Can specify different scoreboard messages for round based games here.

level waittill prespawn

level waittill spawn

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

level waittill roundstart

end

//*** --------------------------------------------
//*** "Axis Victory"
//*** --------------------------------------------
axis_win_timer:
level waittill axiswin
end
//*** --------------------------------------------
//*** "Allied Victory"
//*** --------------------------------------------
teamwin allies
end

//The following you will not need in your script, but I will leave them so you can see how I wrote my custom scripts to do specific things required in my map. If you have played my map you will know what these three threads do.

AlliesAtFlag:
local.player = parm.other
if (local.player.dmteam == "allies")
{
teamwin allies
}
end

AxisAtFlag:
local.player = parm.other
if (local.player.dmteam == "axis")
{
teamwin axis
}
end

felloffbridge:
local.player = parm.other
local.player kill
end
  
Reply With Quote
Old
  (#4)
tarik2 is Offline
Junior Member
 
Posts: 2
Join Date: Oct 2002
   
Default 10-16-2002, 03:23 PM

Thanks for your response. I am making a mp dm map. (hoping that one is the easiest to start with. I understand the basic scripting now like exploding walls, and rain thanks to the Nemesis tutorials, but am still trying to learn more complex stuff - mg's, spotlights and other more advanced stuff above my knowledge level.
  
Reply With Quote
Old
  (#5)
HkySk8r187 is Offline
Member
 
Posts: 57
Join Date: Jun 2002
Location: California
  Send a message via AIM to HkySk8r187 Send a message via MSN to HkySk8r187 Send a message via Yahoo to HkySk8r187  
Default 10-17-2002, 05:04 AM

cool, let me know if you need any help, feel free to e-mail me at chad@3dchad.com

Hope you understand the script I showed you.
  
Reply With Quote
Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump



Powered by vBulletin® Version 3.8.12 by ScriptzBin
Copyright ©2000 - 2025, vBulletin Solutions Inc.
vBulletin Skin developed by: vBStyles.com
© 1998 - 2007 by Rudedog Productions | All trademarks used are properties of their respective owners. All rights reserved.