mirror of
https://github.com/DoubleRepo/PersistentTreeLogging.git
synced 2024-08-30 16:52:16 +00:00
Create exile_x64.ini
This commit is contained in:
parent
bbe8b382f8
commit
8dd7afb4e9
28
exile_x64.ini
Normal file
28
exile_x64.ini
Normal file
@ -0,0 +1,28 @@
|
||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||
;; Tree dammnit
|
||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||
[loadTreeIdPage]
|
||||
SQL1_1 = SELECT id FROM tree LIMIT ?,?
|
||||
SQL1_INPUTS = 1,2
|
||||
OUTPUT = 1
|
||||
|
||||
[loadTree]
|
||||
SQL1_1 = SELECT position_x, position_y, position_z, regrow FROM tree WHERE id = ?
|
||||
SQL1_INPUTS = 1
|
||||
OUTPUT = 1,2,3,4
|
||||
|
||||
[insertTree]
|
||||
SQL1_1 = INSERT INTO tree SET position_x = ?, position_y = ?, position_z = ?
|
||||
SQL1_INPUTS = 1,2,3
|
||||
|
||||
[ResetTree]
|
||||
SQL1_1= UPDATE tree SET regrow = '0', added = now() WHERE id = ?
|
||||
SQL1_INPUTS = 1
|
||||
|
||||
[MarkTree]
|
||||
SQL1_1 = UPDATE tree SET regrow = regrow + 1, added = now() WHERE added < DATE_SUB(NOW(), INTERVAL 2 DAY) AND id = ?
|
||||
SQL1_INPUTS = 1
|
||||
|
||||
[DeleteTree2]
|
||||
SQL1_1 = DELETE FROM tree WHERE id = ?
|
||||
SQL1_INPUTS = 1
|
Loading…
Reference in New Issue
Block a user