Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
19 changes: 11 additions & 8 deletions gta3_sbl/constants.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
const
false=0
true=1
TIMERA=16@
TIMERB=17@
false = 0
true = 1
end
var
TIMERA: int
TIMERB: int
end

const TIMERA = 16@
var TIMERA: int

const TIMERB = 17@
var TIMERB: int

var $player1: Player
var $scplayer: Char
20 changes: 12 additions & 8 deletions sa_sbl/constants.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
const
false=0
true=1
TIMERA=32@
TIMERB=33@
end
var
TIMERA: int
TIMERB: int
false = 0
true = 1
end

const TIMERA = 32@
var TIMERA: int

const TIMERB = 33@
var TIMERB: int

var $player1: Player
var $scplayer: Char
var $players_group: Group
19 changes: 11 additions & 8 deletions vc_sbl/constants.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
const
false=0
true=1
TIMERA=16@
TIMERB=17@
false = 0
true = 1
end
var
TIMERA: int
TIMERB: int
end

const TIMERA = 16@
var TIMERA: int

const TIMERB = 17@
var TIMERB: int

var $player1: Player
var $scplayer: Char