Tue, 22 Jul 2014 04:40:33 +0300
- a bit more refactoring, adjusted the main commandline interface
82
841562f5a32f
- added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
1 | #!botc 1.0 |
841562f5a32f
- added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
2 | |
841562f5a32f
- added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
3 | // This file defines the functions and events for botc |
841562f5a32f
- added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
4 | // Do not edit unless you know what you are doing! |
841562f5a32f
- added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
5 | |
841562f5a32f
- added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
6 | // ============================================================================= |
86
43fe4be38a58
- merged object writer into parser
Teemu Piippo <crimsondusk64@gmail.com>
parents:
82
diff
changeset
|
7 | // |
82
841562f5a32f
- added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
8 | // Function definitions |
99
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
9 | // Syntax: funcdef <return> <num>:<name> (<args>) |
82
841562f5a32f
- added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
10 | // |
99
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
11 | funcdef void 0:changestate (int newstate); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
12 | funcdef void 1:delay (int tics); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
13 | funcdef int 2:rand (int a, int b); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
14 | funcdef bool 3:StringsAreEqual (str string1, str string2); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
15 | funcdef int 4:LookForPowerups (int start, bool visibilitycheck); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
16 | funcdef int 5:LookForWeapons (int start, bool visibilitycheck); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
17 | funcdef int 6:LookForAmmo (int start, bool visibilitycheck); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
18 | funcdef int 7:LookForBaseHealth (int start, bool visibilitycheck); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
19 | funcdef int 8:LookForBaseArmor (int start, bool visibilitycheck); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
20 | funcdef int 9:LookForSuperHealth (int start, bool visibilitycheck); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
21 | funcdef int 10:LookForSuperArmor (int start, bool visibilitycheck); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
22 | funcdef int 11:LookForPlayerEnemies (int start); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
23 | funcdef int 12:GetClosestPlayerEnemy(); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
24 | funcdef void 13:MoveLeft (int speed); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
25 | funcdef void 14:MoveRight (int speed); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
26 | funcdef void 15:MoveForward (int speed); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
27 | funcdef void 16:MoveBackwards (int speed); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
28 | funcdef void 17:StopMovement(); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
29 | funcdef void 18:StopForwardMovement(); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
30 | funcdef void 19:StopSidewaysMovement(); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
31 | funcdef int 20:CheckTerrain (int distance, int angle); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
32 | funcdef int 21:PathToGoal (int speed); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
33 | funcdef int 22:PathToLastKnownEnemyPosition (int speed); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
34 | funcdef int 23:PathToLastHeardSound (int speed); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
35 | funcdef int 24:Roam (int speed); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
36 | funcdef int 25:GetPathingCostToItem (int item); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
37 | funcdef int 26:GetDistanceToItem (int item); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
38 | funcdef str 27:GetItemName (int item); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
39 | funcdef bool 28:IsItemVisible (int item); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
40 | funcdef void 29:SetGoal (int item); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
41 | funcdef void 30:BeginAimingAtEnemy(); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
42 | funcdef void 31:StopAimingAtEnemy(); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
43 | funcdef void 32:Turn (int turnangle); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
44 | funcdef int 33:GetCurrentAngle(); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
45 | funcdef void 34:SetEnemy (int player); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
46 | funcdef void 35:ClearEnemy(); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
47 | funcdef bool 36:IsEnemyAlive(); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
48 | funcdef bool 37:IsEnemyVisible(); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
49 | funcdef int 38:GetDistanceToEnemy(); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
50 | funcdef int 39:GetPlayerDamagedBy(); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
51 | funcdef int 40:GetEnemyInvulnerabilityTicks(); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
52 | funcdef void 41:FireWeapon(); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
53 | funcdef void 42:BeginFiringWeapon(); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
54 | funcdef void 43:StopFiringWeapon(); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
55 | funcdef str 44:GetCurrentWeapon(); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
56 | funcdef void 45:ChangeWeapon (str weapon); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
57 | funcdef str 46:GetWeaponFromItem (int item); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
58 | funcdef bool 47:IsWeaponOwned (int item); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
59 | funcdef bool 48:IsFavoriteWeapon (str weapon); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
60 | funcdef void 49:Say (str message); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
61 | funcdef void 50:SayFromFile (str filename, str section); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
62 | funcdef void 51:SayFromChatFile (str section); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
63 | funcdef void 52:BeginChatting(); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
64 | funcdef void 53:StopChatting(); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
65 | funcdef bool 54:ChatSectionExists (str section); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
66 | funcdef bool 55:ChatSectionExistsInFile (str filename, str section); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
67 | funcdef str 56:GetLastChatString(); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
68 | funcdef str 57:GetLastChatPlayer(); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
69 | funcdef int 58:GetChatFrequency(); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
70 | funcdef void 59:Jump(); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
71 | funcdef void 60:BeginJumping(); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
72 | funcdef void 61:StopJumping(); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
73 | funcdef void 62:Taunt(); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
74 | funcdef void 63:Respawn(); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
75 | funcdef void 64:TryToJoinGame(); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
76 | funcdef bool 65:IsDead(); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
77 | funcdef bool 66:IsSpectating(); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
78 | funcdef int 67:GetHealth(); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
79 | funcdef int 68:GetArmor(); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
80 | funcdef int 69:GetBaseHealth(); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
81 | funcdef int 70:GetBaseArmor(); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
82 | funcdef int 71:GetBotskill(); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
83 | funcdef int 72:GetAccuracy(); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
84 | funcdef int 73:GetIntellect(); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
85 | funcdef int 74:GetAnticipation(); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
86 | funcdef int 75:GetEvade(); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
87 | funcdef int 76:GetReactionTime(); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
88 | funcdef int 77:GetPerception(); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
89 | funcdef void 78:SetSkillIncrease (bool increase); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
90 | funcdef bool 79:IsSkillIncreased(); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
91 | funcdef void 80:SetSkillDecrease (bool decrease); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
92 | funcdef bool 81:IsSkillDecreased(); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
93 | funcdef int 82:GetGameMode(); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
94 | funcdef int 83:GetSpread(); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
95 | funcdef str 84:GetLastJoinedPlayer(); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
96 | funcdef str 85:GetPlayerName (int player); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
97 | funcdef int 86:GetReceivedMedal(); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
98 | funcdef void 87:ACS_Execute (int script, int map = 0, int arg0 = 0, int arg1 = 0, int arg2 = 0); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
99 | funcdef str 88:GetFavoriteWeapon(); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
100 | funcdef void 89:SayFromLump (str lump, str section); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
101 | funcdef void 90:SayFromChatLump (str section); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
102 | funcdef bool 91:ChatSectionExistsInLump (str lump, str section); |
44c0c7f31ae8
- changed the syntax of funcdef to something sane
Teemu Piippo <crimsondusk64@gmail.com>
parents:
86
diff
changeset
|
103 | funcdef bool 92:ChatSectionExistsInChatLump (str section); |
82
841562f5a32f
- added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
104 | |
841562f5a32f
- added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
105 | // ============================================================================= |
86
43fe4be38a58
- merged object writer into parser
Teemu Piippo <crimsondusk64@gmail.com>
parents:
82
diff
changeset
|
106 | // |
82
841562f5a32f
- added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
107 | // Events: |
841562f5a32f
- added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
108 | // eventdef <number>:<name>(); |
841562f5a32f
- added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
109 | // |
841562f5a32f
- added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
110 | eventdef 0:KilledByEnemy(); |
841562f5a32f
- added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
111 | eventdef 1:KilledByPlayer(); |
841562f5a32f
- added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
112 | eventdef 2:KilledBySelf(); |
841562f5a32f
- added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
113 | eventdef 3:KilledByEnvironment(); |
841562f5a32f
- added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
114 | eventdef 4:ReachedGoal(); |
841562f5a32f
- added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
115 | eventdef 5:GoalRemoved(); |
841562f5a32f
- added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
116 | eventdef 6:DamagedByPlayer(); |
841562f5a32f
- added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
117 | eventdef 7:PlayerSay(); |
841562f5a32f
- added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
118 | eventdef 8:EnemyKilled(); |
841562f5a32f
- added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
119 | eventdef 9:Respawned(); |
841562f5a32f
- added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
120 | eventdef 10:Intermission(); |
841562f5a32f
- added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
121 | eventdef 11:NewMap(); |
841562f5a32f
- added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
122 | eventdef 12:EnemyUsedFist(); |
841562f5a32f
- added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
123 | eventdef 13:EnemyUsedChainsaw(); |
841562f5a32f
- added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
124 | eventdef 14:EnemyFiredPistol(); |
841562f5a32f
- added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
125 | eventdef 15:EnemyFiredShotgun(); |
841562f5a32f
- added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
126 | eventdef 16:EnemyFiredSSG(); |
841562f5a32f
- added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
127 | eventdef 17:EnemyFiredChaingun(); |
841562f5a32f
- added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
128 | eventdef 18:EnemyFiredMinigun(); |
841562f5a32f
- added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
129 | eventdef 19:EnemyFiredRocket(); |
841562f5a32f
- added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
130 | eventdef 20:EnemyFiredGrenade(); |
841562f5a32f
- added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
131 | eventdef 21:EnemyFiredRailgun(); |
841562f5a32f
- added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
132 | eventdef 22:EnemyFiredPlasma(); |
841562f5a32f
- added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
133 | eventdef 23:EnemyFiredBFG(); |
841562f5a32f
- added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
134 | eventdef 24:EnemyFiredBFG10k(); |
841562f5a32f
- added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
135 | eventdef 25:PlayerUsedFist(); |
841562f5a32f
- added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
136 | eventdef 26:PlayerUsedChainsaw(); |
841562f5a32f
- added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
137 | eventdef 27:PlayerFiredPistol(); |
841562f5a32f
- added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
138 | eventdef 28:PlayerFiredShotgun(); |
841562f5a32f
- added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
139 | eventdef 29:PlayerFiredSSG(); |
841562f5a32f
- added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
140 | eventdef 30:PlayerFiredChaingun(); |
841562f5a32f
- added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
141 | eventdef 31:PlayerFiredMinigun(); |
841562f5a32f
- added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
142 | eventdef 32:PlayerFiredRocket(); |
841562f5a32f
- added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
143 | eventdef 33:PlayerFiredGrenade(); |
841562f5a32f
- added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
144 | eventdef 34:PlayerFiredRailgun(); |
841562f5a32f
- added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
145 | eventdef 35:PlayerFiredPlasma(); |
841562f5a32f
- added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
146 | eventdef 36:PlayerFiredBFG(); |
841562f5a32f
- added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
147 | eventdef 37:PlayerFiredBFG10k(); |
841562f5a32f
- added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
148 | eventdef 38:UsedFist(); |
841562f5a32f
- added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
149 | eventdef 39:UsedChainsaw(); |
841562f5a32f
- added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
150 | eventdef 40:FiredPistol(); |
841562f5a32f
- added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
151 | eventdef 41:FiredShotgun(); |
841562f5a32f
- added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
152 | eventdef 42:FiredSSG(); |
841562f5a32f
- added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
153 | eventdef 43:FiredChaingun(); |
841562f5a32f
- added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
154 | eventdef 44:FiredMinigun(); |
841562f5a32f
- added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
155 | eventdef 45:FiredRocket(); |
841562f5a32f
- added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
156 | eventdef 46:FiredGrenade(); |
841562f5a32f
- added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
157 | eventdef 47:FiredRailgun(); |
841562f5a32f
- added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
158 | eventdef 48:FiredPlasma(); |
841562f5a32f
- added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
159 | eventdef 49:FiredBFG(); |
841562f5a32f
- added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
160 | eventdef 50:FiredBFG10k(); |
841562f5a32f
- added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
161 | eventdef 51:PlayerJoinedGame(); |
841562f5a32f
- added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
162 | eventdef 52:JoinedGame(); |
841562f5a32f
- added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
163 | eventdef 53:DuelStartingCountdown(); |
841562f5a32f
- added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
164 | eventdef 54:DuelFight(); |
841562f5a32f
- added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
165 | eventdef 55:DuelWinSequence(); |
841562f5a32f
- added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
166 | eventdef 56:Spectating(); |
841562f5a32f
- added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
167 | eventdef 57:LMSStartingCountdown(); |
841562f5a32f
- added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
168 | eventdef 58:LMSFight(); |
841562f5a32f
- added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
169 | eventdef 59:LMSWinSequence(); |
841562f5a32f
- added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
170 | eventdef 60:WeaponChange(); |
841562f5a32f
- added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
171 | eventdef 61:EnemyBFGExplode(); |
841562f5a32f
- added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
172 | eventdef 62:PlayerBFGExplode(); |
841562f5a32f
- added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
173 | eventdef 63:BFGExplode(); |
841562f5a32f
- added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
174 | eventdef 64:ReceivedMedal(); |