~ubuntu-branches/ubuntu/lucid/warzone2100/lucid

« back to all changes in this revision

Viewing changes to data/script/fastplay/s-demo-ai.vlo

  • Committer: Bazaar Package Importer
  • Author(s): Christoph Egger, Paul Wise, Christoph Egger
  • Date: 2009-06-29 17:12:52 UTC
  • mfrom: (1.1.11 upstream) (2.1.7 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090629171252-5ddnlfg3zfchrega
Tags: 2.2.1+dfsg1-1
[ Paul Wise ]
* New upstream release (Closes: #534962)
* Adjust the flex build-depends to take account of the conflict
  with all the versions of flex 2.5.34 (LP: #372872)
* Make the -music Recommends more strict, 2.1 music doesn't work
  with 2.2.
* Upstream moved the downloads to sourceforge, update the watch file
* Bump Standards-Version, no changes needed
* Drop use of dh_desktop since it no longer does anything
* Recommend the new warzone2100-video package, version 2.2 or similar
* Mention the warzone2100 crash reports in the -dbg package description

[ Christoph Egger ]
* Replace CC-2.0 graphic from cybersphinx, create a new tarball
* Add myself to uploaders

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * AI values for Cam1-2
3
 
 *
4
 
 * John & Kev
5
 
 *
6
 
 */
7
 
 
8
 
 
9
 
script "s-demo-ai.slo"
10
 
run
11
 
{
12
 
 
13
 
// first attack pos for enemy1 (at bunkers)
14
 
rBlkX           int             5440            //front gates (heavy defended)
15
 
rBlkY           int             3904
16
 
 
17
 
// position of base oil
18
 
oilPatchX       int             2752            //storage area
19
 
oilPatchY       int             3904
20
 
 
21
 
// position of player base
22
 
playerX         int             6656            //LZ
23
 
playerY         int             7040
24
 
 
25
 
 
26
 
/* General Values */
27
 
player          int             0
28
 
enemy1          int             7       //barbarians (base1)
29
 
enemy2          int             7       //barbarians (base2)
30
 
enemy1Tot       int             8       //build total-ish
31
 
enemy2Tot       int             8       //build total-ish (need to be the same?)
32
 
 
33
 
/* Enemy Tactics */
34
 
//build templates
35
 
trike           TEMPLATE        "BarbarianTrike"
36
 
buggy           TEMPLATE        "BarbarianBuggy"
37
 
bloke           TEMPLATE        "BaBaPeople"
38
 
jeep            TEMPLATE        "BabaJeep"
39
 
rktJeep         TEMPLATE        "BabaRKJeep"
40
 
 
41
 
//base1
42
 
enm1            STRUCTURE       108     //base1=factory1
43
 
enm1ID          STRUCTUREID     108
44
 
enm1Ass1X       int             3392
45
 
enm1Ass1Y       int             2240
46
 
 
47
 
enm1Ret1X       int             5312    //check these
48
 
enm1Ret1Y       int             2368
49
 
enm1Ret2X       int             5440
50
 
enm1Ret2Y       int             3904
51
 
 
52
 
//base2
53
 
enm2            STRUCTURE       323     //base2=factory1
54
 
enm2ID          STRUCTUREID     323
55
 
enm2Ass1X       int             3008
56
 
enm2Ass1Y       int             6848
57
 
enm2Ret1X       int             2240
58
 
enm2Ret1Y       int             4544
59
 
enm2Ret2X       int             2240
60
 
enm2Ret2Y       int             4544
61
 
 
62
 
 
63
 
 
64
 
}
65