Delta Force Reload Forums / Wac Files / IN-Game Counter
Select A Forum
Doc's Memorial
» Doc's Legacy
General Forum
» News
» Announcements
» Submit News
» Dedications
» Tutorials Index
» General Tutorial Index
» JO Tutorials Index
» DFX Tutorials Index
» Modding Tutorials Index
» The Bucket
» Jokes & Riddles
» What's Happening at Novaworld
» Suggestions..
» Request a download
» Tech Support Questions
» Windows 7 & Vista Technical Issues
» General Windows 7 or Vista Issuses
» Virus Progams Issues
» Application Software issues
» Game Software Issues
Delta Force
» DF:2
» DF:2 General
» DF:2 Map Making Questions
» DF:2 Fact Files
» DF:LW
» DF:LW General
» DF:LW Map Making Questions
» DF:LW Fact Files
» DF:TFD
» DF:TFD General
» DF:TFD Map Making Questions
» DF:TFD Fact Files
» DF:BHD
» DF:BHD & DF:BHDTS General
» DF:BHD Map Making Questions
» DF:BHD & DF:BHDTS Fact Files
» DF:X
» DF:X General
»
»
»
» DF:X Fact Files
» DF:X2
» DF:X2 General
» DF:AF
» DF:AF General
Joint Operations
» JO General
» JO:TR & JO:E General
» JO:TR & JO:E FAQ Files
» JO:TR Mods
» JO Mapping
» JO - TR Map Making Questions (DFX Map Editor)
» JO - TR Map Making Questions (NILE)
Wac Files
» Wac Files
» Futher Reading
Comanche 4
» C4 General
» C4 Mapping
» C4 Fact Files
Modding & Terrains
» General Mod Discussion
» Modeling with Skull
» Max 3D Models
» Terrain Making and Converting
Reload Mod
» DFReload Mod Public
Squad Information
» Squad Chat
» Squad Links
Sig & Avatar Section
» Sig Request
» General
» Hi, my name is..
» The Gossip Column
» The Workshop
» Sig and Avatar Discussion
» Free Stuff
» Tutorials and Stuff..
» Resources
» Show off your creations !!
» Request a Graphic
» Pickup a Graphic
» Sig and Pic Hosting
» Links to your uploads
Iceman
posted on 24-5-09 at 07:21
IN-Game Counter
These scripts create an in-game counter during game play.
(This script was created by GENERAL ELECTRIC at NOVAWORLD FORUM)
A.) counter that counts the seconds into the game:
if never then
set(v60,0) ; s into game
set(v70,0) ; helpvar s
set(v80,0) ; m into game
set(v90,30) ; cd m Minutes for countdown
set(v100,59) ; cd s
endif
if elapse(1) then
inc(v60)
inc(v70)
dec(v100)
endif
B.) converting seconds into minutes
if eq(v70,60) or eq(v60,1) and ne(v90,0) then
inc(v80)
set(v70,0)
dec(v90)
set(v100,59)
endif
C.) Making a countdown
if elapse(2) then
consol#("Minutes left",v90)
consol#("Seconds left",v100)
consol("Countdown")
endif
D.) making a timer instead of countdown
if elapse(3) then
consol#("Minutes played",v80)
consol#("Seconds played",v70)
consol("Gametimecounter")
endif
E.) trigger for countdown
if eq(v90,0) and eq(v100,0) and never then
text("Countdown finished")
endif
Delta Force Reload Forums / Wac Files / IN-Game Counter
Select A Forum
Doc's Memorial
» Doc's Legacy
General Forum
» News
» Announcements
» Submit News
» Dedications
» Tutorials Index
» General Tutorial Index
» JO Tutorials Index
» DFX Tutorials Index
» Modding Tutorials Index
» The Bucket
» Jokes & Riddles
» What's Happening at Novaworld
» Suggestions..
» Request a download
» Tech Support Questions
» Windows 7 & Vista Technical Issues
» General Windows 7 or Vista Issuses
» Virus Progams Issues
» Application Software issues
» Game Software Issues
Delta Force
» DF:2
» DF:2 General
» DF:2 Map Making Questions
» DF:2 Fact Files
» DF:LW
» DF:LW General
» DF:LW Map Making Questions
» DF:LW Fact Files
» DF:TFD
» DF:TFD General
» DF:TFD Map Making Questions
» DF:TFD Fact Files
» DF:BHD
» DF:BHD & DF:BHDTS General
» DF:BHD Map Making Questions
» DF:BHD & DF:BHDTS Fact Files
» DF:X
» DF:X General
»
»
»
» DF:X Fact Files
» DF:X2
» DF:X2 General
» DF:AF
» DF:AF General
Joint Operations
» JO General
» JO:TR & JO:E General
» JO:TR & JO:E FAQ Files
» JO:TR Mods
» JO Mapping
» JO - TR Map Making Questions (DFX Map Editor)
» JO - TR Map Making Questions (NILE)
Wac Files
» Wac Files
» Futher Reading
Comanche 4
» C4 General
» C4 Mapping
» C4 Fact Files
Modding & Terrains
» General Mod Discussion
» Modeling with Skull
» Max 3D Models
» Terrain Making and Converting
Reload Mod
» DFReload Mod Public
Squad Information
» Squad Chat
» Squad Links
Sig & Avatar Section
» Sig Request
» General
» Hi, my name is..
» The Gossip Column
» The Workshop
» Sig and Avatar Discussion
» Free Stuff
» Tutorials and Stuff..
» Resources
» Show off your creations !!
» Request a Graphic
» Pickup a Graphic
» Sig and Pic Hosting
» Links to your uploads