Skip to content
Merged
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
34f939d
Add SetPaused to timer class
jjustns Aug 27, 2024
66440b7
Add pause variables to class
jjustns Aug 27, 2024
799913c
Add new functions "pauseTimer" and "isTimerPaused"
jjustns Aug 27, 2024
005ffe7
Add new timer function defs
jjustns Aug 27, 2024
5115648
Add "PauseTimer" to CLuaTimerManager
jjustns Aug 27, 2024
69e2aee
Def "PauseTimer" in CLuaTimerManager
jjustns Aug 27, 2024
746ad73
Adds pauseTimer() and isTimerPaused()
jjustns Aug 27, 2024
7400bb9
Add new timer function defs
jjustns Aug 27, 2024
ec73d91
Add "PauseTimer" to CLuaTimerManager
jjustns Aug 27, 2024
5372afa
Def "PauseTimer" in CLuaTimerManager
jjustns Aug 27, 2024
a38431f
Merge branch 'multitheftauto:master' into Implement/NewTimerFuncs
jjustns Aug 27, 2024
968bd03
fix typo
jjustns Aug 27, 2024
07da2bc
fix typo
jjustns Aug 27, 2024
d314dab
A few minor adjustments
jjustns Aug 27, 2024
22a4177
Minor adjustments #2
jjustns Aug 27, 2024
ca63aa4
Update to ArgumentParser
jjustns Aug 27, 2024
36c6a9c
Update to ArgumentParser
jjustns Aug 27, 2024
a468297
minor adjustment
jjustns Aug 27, 2024
850ae8e
Minor adjustment to function name
jjustns Aug 27, 2024
769ae40
Updated to ArgumentParser and changed function name
jjustns Aug 27, 2024
4ba657a
Update to ArgumentParser
jjustns Aug 27, 2024
aa3aaa9
Minor adjustment to function name
jjustns Aug 27, 2024
4b70ef2
Minor adjustment to function name
jjustns Aug 27, 2024
984132e
Removed hungarian notation
jjustns Aug 28, 2024
c937f0e
Removed hungarian notation
jjustns Aug 28, 2024
910b54f
Removed hungarian notation & useless luaState
jjustns Aug 28, 2024
ead0c52
Removed hungarian notation & useless luaState
jjustns Aug 28, 2024
aa1fdba
Removed hungarian notations
jjustns Aug 28, 2024
99da369
Removed hungarian notation
jjustns Aug 28, 2024
9e8bc21
Removed hungarian notation & useless luaState
jjustns Aug 28, 2024
44a72f2
Removed hungarian notation & useless luaState
jjustns Aug 28, 2024
76225a7
Removed hungarian notations
jjustns Aug 28, 2024
116085e
Removed hungarian notations
jjustns Aug 28, 2024
8940cd9
Merge branch 'master' into Implement/NewTimerFuncs
tederis Aug 28, 2024
a43fbcd
Merge branch 'master' of https://github.com/tederis/mtasa-blue
tederis Sep 4, 2024
772ec20
Merge branch 'master' of https://github.com/tederis/mtasa-blue
tederis Sep 4, 2024
2367643
Fix bitstream version (RespawnObject_Serverside)
tederis Sep 4, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions Shared/sdk/net/bitstream.h
Original file line number Diff line number Diff line change
Expand Up @@ -550,11 +550,7 @@ enum class eBitStreamVersion : unsigned short

// Add breakObject to serverside as well
// 2024-05-31
BreakObject_Serverside,

// Add respawnObject and toggleObjectRespawn to serverside
// 2024-06-09
RespawnObject_Serverside,
BreakObject_Serverside,

// Ped syncronization revision
// 2024-06-16
Expand All @@ -572,6 +568,10 @@ enum class eBitStreamVersion : unsigned short
// 2024-07-05
SetMarkerTargetArrowProperties,

// Add respawnObject and toggleObjectRespawn to serverside
// 2024-09-04
RespawnObject_Serverside,

// This allows us to automatically increment the BitStreamVersion when things are added to this enum.
// Make sure you only add things above this comment.
Next,
Expand Down