author | Wuzzy <Wuzzy2@mail.ru> |
Sat, 17 Feb 2018 11:25:43 +0100 | |
changeset 13032 | 625d5a45f267 |
parent 12961 | 89930daecaab |
child 13178 | 4d1cf0d76eb7 |
permissions | -rw-r--r-- |
8043 | 1 |
HedgewarsScriptLoad("/Scripts/Locale.lua") |
2 |
HedgewarsScriptLoad("/Scripts/Tracker.lua") |
|
5127 | 3 |
|
12961
89930daecaab
Add minigun to scripts. Also add a few missing ammos to BRW and RW
Wuzzy <Wuzzy2@mail.ru>
parents:
12212
diff
changeset
|
4 |
local weapons = { amGrenade, amClusterBomb, amBazooka, amBee, amShotgun, amMine, amDEagle, amDynamite, amFirePunch, amWhip, amPickHammer, amBaseballBat, amMortar, amCake, amSeduction, amWatermelon, amHellishBomb, amDrill, amBallgun, amRCPlane, amSniperRifle, amMolotov, amBirdy, amBlowTorch, amGasBomb, amFlamethrower, amSMine, amKamikaze, amDuck, amMinigun, amAirMine, amKnife } |
5127 | 5 |
|
12961
89930daecaab
Add minigun to scripts. Also add a few missing ammos to BRW and RW
Wuzzy <Wuzzy2@mail.ru>
parents:
12212
diff
changeset
|
6 |
-- G,C,B,B,S,M,D,D,F,W,P,B,M,C,S,W,H,D,B,R,S,M,B,B,G,F,S,K,D,M,A,K |
89930daecaab
Add minigun to scripts. Also add a few missing ammos to BRW and RW
Wuzzy <Wuzzy2@mail.ru>
parents:
12212
diff
changeset
|
7 |
local weapons_values = {1,1,1,2,1,1,1,2,1,1,1,2,1,3,1,3,3,2,3,3,1,1,2,1,1,2,2,1,1,3,1,2} |
5127 | 8 |
|
9 |
local airweapons = { amAirAttack, amMineStrike, amNapalm, amDrillStrike } |
|
10 |
||
11 |
-- A,M,N,D |
|
12 |
local airweapons_values = {2,2,2,2} |
|
13 |
||
14 |
local utilities = { amTeleport, amGirder, amSwitch, amLowGravity, amResurrector, amRope, amParachute, amJetpack, amPortalGun, amSnowball } |
|
15 |
||
16 |
-- T,G,S,L,R,R,P,J,P,S |
|
17 |
local utilities_values = {1,2,2,1,2,2,1,2,2,2} |
|
18 |
||
5141
2fb6555011d3
cleared up Random Weapons and implemented remembering of weapons in Balanced Random Weapons too, also seems to work
Henek
parents:
5127
diff
changeset
|
19 |
function randomAmmo() |
2fb6555011d3
cleared up Random Weapons and implemented remembering of weapons in Balanced Random Weapons too, also seems to work
Henek
parents:
5127
diff
changeset
|
20 |
local n = 3 --"points" to be allocated on weapons |
5827
a416f1070fdf
we don't need trailing whitespaces... I guess :P
sheepluva
parents:
5141
diff
changeset
|
21 |
|
5141
2fb6555011d3
cleared up Random Weapons and implemented remembering of weapons in Balanced Random Weapons too, also seems to work
Henek
parents:
5127
diff
changeset
|
22 |
--pick random weapon and subtract cost |
2fb6555011d3
cleared up Random Weapons and implemented remembering of weapons in Balanced Random Weapons too, also seems to work
Henek
parents:
5127
diff
changeset
|
23 |
local r = GetRandom(table.maxn(weapons_values)) + 1 |
2fb6555011d3
cleared up Random Weapons and implemented remembering of weapons in Balanced Random Weapons too, also seems to work
Henek
parents:
5127
diff
changeset
|
24 |
local picked_items = {} |
2fb6555011d3
cleared up Random Weapons and implemented remembering of weapons in Balanced Random Weapons too, also seems to work
Henek
parents:
5127
diff
changeset
|
25 |
table.insert(picked_items, weapons[r]) |
2fb6555011d3
cleared up Random Weapons and implemented remembering of weapons in Balanced Random Weapons too, also seems to work
Henek
parents:
5127
diff
changeset
|
26 |
n = n - weapons_values[r] |
5827
a416f1070fdf
we don't need trailing whitespaces... I guess :P
sheepluva
parents:
5141
diff
changeset
|
27 |
|
a416f1070fdf
we don't need trailing whitespaces... I guess :P
sheepluva
parents:
5141
diff
changeset
|
28 |
|
5141
2fb6555011d3
cleared up Random Weapons and implemented remembering of weapons in Balanced Random Weapons too, also seems to work
Henek
parents:
5127
diff
changeset
|
29 |
--choose any weapons or utilities to use up remaining n |
5827
a416f1070fdf
we don't need trailing whitespaces... I guess :P
sheepluva
parents:
5141
diff
changeset
|
30 |
|
5141
2fb6555011d3
cleared up Random Weapons and implemented remembering of weapons in Balanced Random Weapons too, also seems to work
Henek
parents:
5127
diff
changeset
|
31 |
while n > 0 do |
2fb6555011d3
cleared up Random Weapons and implemented remembering of weapons in Balanced Random Weapons too, also seems to work
Henek
parents:
5127
diff
changeset
|
32 |
local items = {} |
2fb6555011d3
cleared up Random Weapons and implemented remembering of weapons in Balanced Random Weapons too, also seems to work
Henek
parents:
5127
diff
changeset
|
33 |
local items_values = {} |
2fb6555011d3
cleared up Random Weapons and implemented remembering of weapons in Balanced Random Weapons too, also seems to work
Henek
parents:
5127
diff
changeset
|
34 |
|
2fb6555011d3
cleared up Random Weapons and implemented remembering of weapons in Balanced Random Weapons too, also seems to work
Henek
parents:
5127
diff
changeset
|
35 |
for i, w in pairs(weapons_values) do |
2fb6555011d3
cleared up Random Weapons and implemented remembering of weapons in Balanced Random Weapons too, also seems to work
Henek
parents:
5127
diff
changeset
|
36 |
local used = false |
2fb6555011d3
cleared up Random Weapons and implemented remembering of weapons in Balanced Random Weapons too, also seems to work
Henek
parents:
5127
diff
changeset
|
37 |
if w <= n then |
2fb6555011d3
cleared up Random Weapons and implemented remembering of weapons in Balanced Random Weapons too, also seems to work
Henek
parents:
5127
diff
changeset
|
38 |
--check that this weapon hasn't been given already |
2fb6555011d3
cleared up Random Weapons and implemented remembering of weapons in Balanced Random Weapons too, also seems to work
Henek
parents:
5127
diff
changeset
|
39 |
for j, k in pairs(picked_items) do |
2fb6555011d3
cleared up Random Weapons and implemented remembering of weapons in Balanced Random Weapons too, also seems to work
Henek
parents:
5127
diff
changeset
|
40 |
if weapons[i] == k then |
2fb6555011d3
cleared up Random Weapons and implemented remembering of weapons in Balanced Random Weapons too, also seems to work
Henek
parents:
5127
diff
changeset
|
41 |
used = true |
2fb6555011d3
cleared up Random Weapons and implemented remembering of weapons in Balanced Random Weapons too, also seems to work
Henek
parents:
5127
diff
changeset
|
42 |
end |
2fb6555011d3
cleared up Random Weapons and implemented remembering of weapons in Balanced Random Weapons too, also seems to work
Henek
parents:
5127
diff
changeset
|
43 |
end |
2fb6555011d3
cleared up Random Weapons and implemented remembering of weapons in Balanced Random Weapons too, also seems to work
Henek
parents:
5127
diff
changeset
|
44 |
if not used then |
2fb6555011d3
cleared up Random Weapons and implemented remembering of weapons in Balanced Random Weapons too, also seems to work
Henek
parents:
5127
diff
changeset
|
45 |
table.insert(items_values, w) |
2fb6555011d3
cleared up Random Weapons and implemented remembering of weapons in Balanced Random Weapons too, also seems to work
Henek
parents:
5127
diff
changeset
|
46 |
table.insert(items, weapons[i]) |
2fb6555011d3
cleared up Random Weapons and implemented remembering of weapons in Balanced Random Weapons too, also seems to work
Henek
parents:
5127
diff
changeset
|
47 |
end |
2fb6555011d3
cleared up Random Weapons and implemented remembering of weapons in Balanced Random Weapons too, also seems to work
Henek
parents:
5127
diff
changeset
|
48 |
end |
2fb6555011d3
cleared up Random Weapons and implemented remembering of weapons in Balanced Random Weapons too, also seems to work
Henek
parents:
5127
diff
changeset
|
49 |
end |
2fb6555011d3
cleared up Random Weapons and implemented remembering of weapons in Balanced Random Weapons too, also seems to work
Henek
parents:
5127
diff
changeset
|
50 |
|
2fb6555011d3
cleared up Random Weapons and implemented remembering of weapons in Balanced Random Weapons too, also seems to work
Henek
parents:
5127
diff
changeset
|
51 |
for i, w in pairs(utilities_values) do |
2fb6555011d3
cleared up Random Weapons and implemented remembering of weapons in Balanced Random Weapons too, also seems to work
Henek
parents:
5127
diff
changeset
|
52 |
local used = false |
2fb6555011d3
cleared up Random Weapons and implemented remembering of weapons in Balanced Random Weapons too, also seems to work
Henek
parents:
5127
diff
changeset
|
53 |
if w <= n then |
2fb6555011d3
cleared up Random Weapons and implemented remembering of weapons in Balanced Random Weapons too, also seems to work
Henek
parents:
5127
diff
changeset
|
54 |
--check that this weapon hasn't been given already |
2fb6555011d3
cleared up Random Weapons and implemented remembering of weapons in Balanced Random Weapons too, also seems to work
Henek
parents:
5127
diff
changeset
|
55 |
for j, k in pairs(picked_items) do |
2fb6555011d3
cleared up Random Weapons and implemented remembering of weapons in Balanced Random Weapons too, also seems to work
Henek
parents:
5127
diff
changeset
|
56 |
if utilities[i] == k then |
2fb6555011d3
cleared up Random Weapons and implemented remembering of weapons in Balanced Random Weapons too, also seems to work
Henek
parents:
5127
diff
changeset
|
57 |
used = true |
2fb6555011d3
cleared up Random Weapons and implemented remembering of weapons in Balanced Random Weapons too, also seems to work
Henek
parents:
5127
diff
changeset
|
58 |
end |
2fb6555011d3
cleared up Random Weapons and implemented remembering of weapons in Balanced Random Weapons too, also seems to work
Henek
parents:
5127
diff
changeset
|
59 |
end |
2fb6555011d3
cleared up Random Weapons and implemented remembering of weapons in Balanced Random Weapons too, also seems to work
Henek
parents:
5127
diff
changeset
|
60 |
if not used then |
2fb6555011d3
cleared up Random Weapons and implemented remembering of weapons in Balanced Random Weapons too, also seems to work
Henek
parents:
5127
diff
changeset
|
61 |
table.insert(items_values, w) |
2fb6555011d3
cleared up Random Weapons and implemented remembering of weapons in Balanced Random Weapons too, also seems to work
Henek
parents:
5127
diff
changeset
|
62 |
table.insert(items, utilities[i]) |
2fb6555011d3
cleared up Random Weapons and implemented remembering of weapons in Balanced Random Weapons too, also seems to work
Henek
parents:
5127
diff
changeset
|
63 |
end |
2fb6555011d3
cleared up Random Weapons and implemented remembering of weapons in Balanced Random Weapons too, also seems to work
Henek
parents:
5127
diff
changeset
|
64 |
end |
2fb6555011d3
cleared up Random Weapons and implemented remembering of weapons in Balanced Random Weapons too, also seems to work
Henek
parents:
5127
diff
changeset
|
65 |
end |
5827
a416f1070fdf
we don't need trailing whitespaces... I guess :P
sheepluva
parents:
5141
diff
changeset
|
66 |
|
5141
2fb6555011d3
cleared up Random Weapons and implemented remembering of weapons in Balanced Random Weapons too, also seems to work
Henek
parents:
5127
diff
changeset
|
67 |
local r = GetRandom(table.maxn(items_values)) + 1 |
2fb6555011d3
cleared up Random Weapons and implemented remembering of weapons in Balanced Random Weapons too, also seems to work
Henek
parents:
5127
diff
changeset
|
68 |
table.insert(picked_items, items[r]) |
2fb6555011d3
cleared up Random Weapons and implemented remembering of weapons in Balanced Random Weapons too, also seems to work
Henek
parents:
5127
diff
changeset
|
69 |
n = n - items_values[r] |
2fb6555011d3
cleared up Random Weapons and implemented remembering of weapons in Balanced Random Weapons too, also seems to work
Henek
parents:
5127
diff
changeset
|
70 |
end |
5827
a416f1070fdf
we don't need trailing whitespaces... I guess :P
sheepluva
parents:
5141
diff
changeset
|
71 |
|
5141
2fb6555011d3
cleared up Random Weapons and implemented remembering of weapons in Balanced Random Weapons too, also seems to work
Henek
parents:
5127
diff
changeset
|
72 |
return picked_items |
2fb6555011d3
cleared up Random Weapons and implemented remembering of weapons in Balanced Random Weapons too, also seems to work
Henek
parents:
5127
diff
changeset
|
73 |
end |
2fb6555011d3
cleared up Random Weapons and implemented remembering of weapons in Balanced Random Weapons too, also seems to work
Henek
parents:
5127
diff
changeset
|
74 |
|
2fb6555011d3
cleared up Random Weapons and implemented remembering of weapons in Balanced Random Weapons too, also seems to work
Henek
parents:
5127
diff
changeset
|
75 |
function assignAmmo(hog) |
2fb6555011d3
cleared up Random Weapons and implemented remembering of weapons in Balanced Random Weapons too, also seems to work
Henek
parents:
5127
diff
changeset
|
76 |
local name = GetHogTeamName(hog) |
2fb6555011d3
cleared up Random Weapons and implemented remembering of weapons in Balanced Random Weapons too, also seems to work
Henek
parents:
5127
diff
changeset
|
77 |
local processed = getTeamValue(name, "processed") |
2fb6555011d3
cleared up Random Weapons and implemented remembering of weapons in Balanced Random Weapons too, also seems to work
Henek
parents:
5127
diff
changeset
|
78 |
if processed == nil or not processed then |
2fb6555011d3
cleared up Random Weapons and implemented remembering of weapons in Balanced Random Weapons too, also seems to work
Henek
parents:
5127
diff
changeset
|
79 |
local ammo = getTeamValue(name, "ammo") |
2fb6555011d3
cleared up Random Weapons and implemented remembering of weapons in Balanced Random Weapons too, also seems to work
Henek
parents:
5127
diff
changeset
|
80 |
if ammo == nil then |
2fb6555011d3
cleared up Random Weapons and implemented remembering of weapons in Balanced Random Weapons too, also seems to work
Henek
parents:
5127
diff
changeset
|
81 |
ammo = randomAmmo() |
2fb6555011d3
cleared up Random Weapons and implemented remembering of weapons in Balanced Random Weapons too, also seems to work
Henek
parents:
5127
diff
changeset
|
82 |
setTeamValue(name, "ammo", ammo) |
2fb6555011d3
cleared up Random Weapons and implemented remembering of weapons in Balanced Random Weapons too, also seems to work
Henek
parents:
5127
diff
changeset
|
83 |
end |
2fb6555011d3
cleared up Random Weapons and implemented remembering of weapons in Balanced Random Weapons too, also seems to work
Henek
parents:
5127
diff
changeset
|
84 |
for i, w in pairs(ammo) do |
2fb6555011d3
cleared up Random Weapons and implemented remembering of weapons in Balanced Random Weapons too, also seems to work
Henek
parents:
5127
diff
changeset
|
85 |
AddAmmo(hog, w) |
2fb6555011d3
cleared up Random Weapons and implemented remembering of weapons in Balanced Random Weapons too, also seems to work
Henek
parents:
5127
diff
changeset
|
86 |
end |
2fb6555011d3
cleared up Random Weapons and implemented remembering of weapons in Balanced Random Weapons too, also seems to work
Henek
parents:
5127
diff
changeset
|
87 |
setTeamValue(name, "processed", true) |
2fb6555011d3
cleared up Random Weapons and implemented remembering of weapons in Balanced Random Weapons too, also seems to work
Henek
parents:
5127
diff
changeset
|
88 |
end |
2fb6555011d3
cleared up Random Weapons and implemented remembering of weapons in Balanced Random Weapons too, also seems to work
Henek
parents:
5127
diff
changeset
|
89 |
end |
2fb6555011d3
cleared up Random Weapons and implemented remembering of weapons in Balanced Random Weapons too, also seems to work
Henek
parents:
5127
diff
changeset
|
90 |
|
2fb6555011d3
cleared up Random Weapons and implemented remembering of weapons in Balanced Random Weapons too, also seems to work
Henek
parents:
5127
diff
changeset
|
91 |
function reset(hog) |
2fb6555011d3
cleared up Random Weapons and implemented remembering of weapons in Balanced Random Weapons too, also seems to work
Henek
parents:
5127
diff
changeset
|
92 |
setTeamValue(GetHogTeamName(hog), "processed", false) |
2fb6555011d3
cleared up Random Weapons and implemented remembering of weapons in Balanced Random Weapons too, also seems to work
Henek
parents:
5127
diff
changeset
|
93 |
end |
2fb6555011d3
cleared up Random Weapons and implemented remembering of weapons in Balanced Random Weapons too, also seems to work
Henek
parents:
5127
diff
changeset
|
94 |
|
5127 | 95 |
function onGameInit() |
10036 | 96 |
DisableGameFlags(gfPerHogAmmo) |
97 |
EnableGameFlags(gfResetWeps) |
|
5141
2fb6555011d3
cleared up Random Weapons and implemented remembering of weapons in Balanced Random Weapons too, also seems to work
Henek
parents:
5127
diff
changeset
|
98 |
Goals = loc("Each turn you get 1-3 random weapons") |
5127 | 99 |
end |
100 |
||
101 |
function onGameStart() |
|
5141
2fb6555011d3
cleared up Random Weapons and implemented remembering of weapons in Balanced Random Weapons too, also seems to work
Henek
parents:
5127
diff
changeset
|
102 |
trackTeams() |
5127 | 103 |
if MapHasBorder() == false then |
104 |
for i, w in pairs(airweapons) do |
|
105 |
table.insert(weapons, w) |
|
106 |
end |
|
107 |
for i, w in pairs(airweapons_values) do |
|
108 |
table.insert(weapons_values, w) |
|
109 |
end |
|
110 |
end |
|
111 |
end |
|
112 |
||
113 |
function onAmmoStoreInit() |
|
114 |
SetAmmo(amSkip, 9, 0, 0, 0) |
|
5827
a416f1070fdf
we don't need trailing whitespaces... I guess :P
sheepluva
parents:
5141
diff
changeset
|
115 |
|
5127 | 116 |
SetAmmo(amExtraDamage, 0, 1, 0, 1) |
117 |
SetAmmo(amInvulnerable, 0, 1, 0, 1) |
|
118 |
SetAmmo(amExtraTime, 0, 1, 0, 1) |
|
119 |
SetAmmo(amLaserSight, 0, 1, 0, 1) |
|
120 |
SetAmmo(amVampiric, 0, 1, 0, 1) |
|
121 |
||
122 |
for i, w in pairs(utilities) do |
|
123 |
SetAmmo(w, 0, 0, 0, 1) |
|
124 |
end |
|
125 |
||
126 |
for i, w in pairs(weapons) do |
|
127 |
SetAmmo(w, 0, 0, 0, 1) |
|
128 |
end |
|
129 |
||
130 |
for i, w in pairs(airweapons) do |
|
131 |
SetAmmo(w, 0, 0, 0, 1) |
|
132 |
end |
|
133 |
end |
|
134 |
||
135 |
function onNewTurn() |
|
5141
2fb6555011d3
cleared up Random Weapons and implemented remembering of weapons in Balanced Random Weapons too, also seems to work
Henek
parents:
5127
diff
changeset
|
136 |
runOnGears(assignAmmo) |
2fb6555011d3
cleared up Random Weapons and implemented remembering of weapons in Balanced Random Weapons too, also seems to work
Henek
parents:
5127
diff
changeset
|
137 |
runOnGears(reset) |
2fb6555011d3
cleared up Random Weapons and implemented remembering of weapons in Balanced Random Weapons too, also seems to work
Henek
parents:
5127
diff
changeset
|
138 |
setTeamValue(GetHogTeamName(CurrentHedgehog), "ammo", nil) |
2fb6555011d3
cleared up Random Weapons and implemented remembering of weapons in Balanced Random Weapons too, also seems to work
Henek
parents:
5127
diff
changeset
|
139 |
end |
5127 | 140 |
|
5141
2fb6555011d3
cleared up Random Weapons and implemented remembering of weapons in Balanced Random Weapons too, also seems to work
Henek
parents:
5127
diff
changeset
|
141 |
function onGearAdd(gear) |
2fb6555011d3
cleared up Random Weapons and implemented remembering of weapons in Balanced Random Weapons too, also seems to work
Henek
parents:
5127
diff
changeset
|
142 |
if GetGearType(gear) == gtHedgehog then |
2fb6555011d3
cleared up Random Weapons and implemented remembering of weapons in Balanced Random Weapons too, also seems to work
Henek
parents:
5127
diff
changeset
|
143 |
trackGear(gear) |
5127 | 144 |
end |
145 |
end |
|
5141
2fb6555011d3
cleared up Random Weapons and implemented remembering of weapons in Balanced Random Weapons too, also seems to work
Henek
parents:
5127
diff
changeset
|
146 |
|
2fb6555011d3
cleared up Random Weapons and implemented remembering of weapons in Balanced Random Weapons too, also seems to work
Henek
parents:
5127
diff
changeset
|
147 |
function onGearDelete(gear) |
2fb6555011d3
cleared up Random Weapons and implemented remembering of weapons in Balanced Random Weapons too, also seems to work
Henek
parents:
5127
diff
changeset
|
148 |
trackDeletion(gear) |
2fb6555011d3
cleared up Random Weapons and implemented remembering of weapons in Balanced Random Weapons too, also seems to work
Henek
parents:
5127
diff
changeset
|
149 |
end |