Created: 07/15/2023, 12:47:59 AM Updated: 02/24/2024, 02:58:30 AM View Change History
1
2
3
4
5
6
7
8
9@setvar! yourSmokeBombCooldown 120000
10
11
12
13
14
15@setvar! myOriginalSmokePotCount 0
16if counttype 52149 backpack 2876 as potCount
17 @setvar! myOriginalSmokePotCount potCount
18endif
19say "[SmokeBomb"
20wait 200
21if counttype 52149 backpack 2876 as potCount
22 if potCount = myOriginalSmokePotCount
23 overhead "We didn't use a bomb" 34
24 else
25 cooldown "SmokeBomb" yourSmokeBombCooldown
26 endif
27else
28 overhead "We need bombs!" 34
29endif
30
31