botc_defs.bts

Sun, 19 Jan 2014 20:16:00 +0200

author
Teemu Piippo <crimsondusk64@gmail.com>
date
Sun, 19 Jan 2014 20:16:00 +0200
changeset 82
841562f5a32f
child 86
43fe4be38a58
permissions
-rw-r--r--

- added the public-domain updaterevision so I can have access to git stuff
- lexer #include now works properly! woot!
- merged commands.def and events.def to botc_defs.bts. This is essentially the "zcommon.acs" of botc.

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 // =============================================================================
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
7 // Function definitions
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
8 // Syntax: number:name:returntype:numargs:maxargs[:argumentlist]
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
9 //
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
10 funcdef 0:changestate:void:1:1:int(newstate);
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
11 funcdef 1:delay:void:1:1:int(tics);
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
12 funcdef 2:rand:int:2:2:int(a):int(b);
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
13 funcdef 3:StringsAreEqual:bool:2:2:str(string1):str(string2);
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
14 funcdef 4:LookForPowerups:int:2:2:int(start):bool(visibilitycheck);
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
15 funcdef 5:LookForWeapons:int:2:2:int(start):bool(visibilitycheck);
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
16 funcdef 6:LookForAmmo:int:2:2:int(start):bool(visibilitycheck);
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
17 funcdef 7:LookForBaseHealth:int:2:2:int(start):bool(visibilitycheck);
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
18 funcdef 8:LookForBaseArmor:int:2:2:int(start):bool(visibilitycheck);
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
19 funcdef 9:LookForSuperHealth:int:2:2:int(start):bool(visibilitycheck);
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
20 funcdef 10:LookForSuperArmor:int:2:2:int(start):bool(visibilitycheck);
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
21 funcdef 11:LookForPlayerEnemies:int:1:1:int(start);
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
22 funcdef 12:GetClosestPlayerEnemy:int:0:0;
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
23 funcdef 13:MoveLeft:void:1:1:int(speed);
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
24 funcdef 14:MoveRight:void:1:1:int(speed);
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
25 funcdef 15:MoveForward:void:1:1:int(speed);
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
26 funcdef 16:MoveBackwards:void:1:1:int(speed);
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
27 funcdef 17:StopMovement:void:0:0;
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
28 funcdef 18:StopForwardMovement:void:0:0;
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
29 funcdef 19:StopSidewaysMovement:void:0:0;
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
30 funcdef 20:CheckTerrain:int:2:2:int(distance):int(angle);
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
31 funcdef 21:PathToGoal:int:1:1:int(speed);
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
32 funcdef 22:PathToLastKnownEnemyPosition:int:1:1:int(speed);
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
33 funcdef 23:PathToLastHeardSound:int:1:1:int(speed);
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
34 funcdef 24:Roam:int:1:1:int(speed);
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
35 funcdef 25:GetPathingCostToItem:int:1:1:int(item);
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
36 funcdef 26:GetDistanceToItem:int:1:1:int(item);
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
37 funcdef 27:GetItemName:str:1:1:int(item);
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
38 funcdef 28:IsItemVisible:bool:1:1:int(item);
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
39 funcdef 29:SetGoal:void:1:1:int(item);
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
40 funcdef 30:BeginAimingAtEnemy:void:0:0;
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
41 funcdef 31:StopAimingAtEnemy:void:0:0;
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
42 funcdef 32:Turn:void:1:1:int(turnangle);
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
43 funcdef 33:GetCurrentAngle:int:0:0;
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
44 funcdef 34:SetEnemy:void:1:1:int(player);
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
45 funcdef 35:ClearEnemy:void:0:0;
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
46 funcdef 36:IsEnemyAlive:bool:0:0;
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
47 funcdef 37:IsEnemyVisible:bool:0:0;
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
48 funcdef 38:GetDistanceToEnemy:int:0:0;
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
49 funcdef 39:GetPlayerDamagedBy:int:0:0;
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
50 funcdef 40:GetEnemyInvulnerabilityTicks:int:0:0;
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
51 funcdef 41:FireWeapon:void:0:0;
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
52 funcdef 42:BeginFiringWeapon:void:0:0;
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
53 funcdef 43:StopFiringWeapon:void:0:0;
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
54 funcdef 44:GetCurrentWeapon:str:0:0;
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
55 funcdef 45:ChangeWeapon:void:1:1:str(weapon);
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
56 funcdef 46:GetWeaponFromItem:str:1:1:int(item);
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
57 funcdef 47:IsWeaponOwned:bool:1:1:int(item);
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
58 funcdef 48:IsFavoriteWeapon:bool:1:1:str(weapon);
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
59 funcdef 49:Say:void:1:1:str(message);
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
60 funcdef 50:SayFromFile:void:2:2:str(filename):str(section);
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
61 funcdef 51:SayFromChatFile:void:1:1:str(section);
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
62 funcdef 52:BeginChatting:void:0:0;
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
63 funcdef 53:StopChatting:void:0:0;
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
64 funcdef 54:ChatSectionExists:bool:1:1:str(section);
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
65 funcdef 55:ChatSectionExistsInFile:bool:2:2:str(filename):str(section);
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
66 funcdef 56:GetLastChatString:str:0:0;
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
67 funcdef 57:GetLastChatPlayer:str:0:0;
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
68 funcdef 58:GetChatFrequency:int:0:0;
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
69 funcdef 59:Jump:void:0:0;
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
70 funcdef 60:BeginJumping:void:0:0;
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
71 funcdef 61:StopJumping:void:0:0;
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
72 funcdef 62:Taunt:void:0:0;
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
73 funcdef 63:Respawn:void:0:0;
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
74 funcdef 64:TryToJoinGame:void:0:0;
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
75 funcdef 65:IsDead:bool:0:0;
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
76 funcdef 66:IsSpectating:bool:0:0;
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
77 funcdef 67:GetHealth:int:0:0;
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
78 funcdef 68:GetArmor:int:0:0;
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
79 funcdef 69:GetBaseHealth:int:0:0;
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
80 funcdef 70:GetBaseArmor:int:0:0;
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
81 funcdef 71:GetBotskill:int:0:0;
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
82 funcdef 72:GetAccuracy:int:0:0;
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
83 funcdef 73:GetIntellect:int:0:0;
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
84 funcdef 74:GetAnticipation:int:0:0;
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
85 funcdef 75:GetEvade:int:0:0;
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
86 funcdef 76:GetReactionTime:int:0:0;
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
87 funcdef 77:GetPerception:int:0:0;
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
88 funcdef 78:SetSkillIncrease:void:1:1:bool(increase);
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
89 funcdef 79:IsSkillIncreased:bool:0:0;
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
90 funcdef 80:SetSkillDecrease:void:1:1:bool(decrease);
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
91 funcdef 81:IsSkillDecreased:bool:0:0;
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
92 funcdef 82:GetGameMode:int:0:0;
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
93 funcdef 83:GetSpread:int:0:0;
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
94 funcdef 84:GetLastJoinedPlayer:str:0:0;
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
95 funcdef 85:GetPlayerName:str:1:1:int(player);
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
96 funcdef 86:GetReceivedMedal:int:0:0;
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
97 funcdef 87:ACS_Execute:void:1:5:int(script):int(map=0):int(arg0=0):int(arg1=0):int(arg2=0);
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
98 funcdef 88:GetFavoriteWeapon:str:0:0;
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
99 funcdef 89:SayFromLump:void:2:2:str(lump):str(section);
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
100 funcdef 90:SayFromChatLump:void:1:1:str(section);
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
101 funcdef 91:ChatSectionExistsInLump:bool:2:2:str(lump):str(section);
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
102 funcdef 92:ChatSectionExistsInChatLump:bool:1:1:str(section);
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
103
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 // Events:
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
106 // 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
107 //
841562f5a32f - added the public-domain updaterevision so I can have access to git stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff changeset
108 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
109 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
110 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
111 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
112 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
113 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
114 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
115 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
116 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
117 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
118 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
119 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
120 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
121 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
122 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
123 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
124 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
125 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
126 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
127 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
128 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
129 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
130 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
131 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
132 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
133 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
134 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
135 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
136 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
137 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
138 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
139 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
140 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
141 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
142 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
143 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
144 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
145 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
146 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
147 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
148 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
149 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
150 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
151 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
152 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
153 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
154 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
155 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
156 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
157 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
158 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
159 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
160 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
161 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
162 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
163 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
164 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
165 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
166 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
167 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
168 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
169 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
170 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
171 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
172 eventdef 64:ReceivedMedal();

mercurial