-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.lua
164 lines (131 loc) · 5.54 KB
/
main.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
---@class core
---@field isDead table
local core = {}
core.functions = require 'custom.resdaynCore.functions'
core.tableConfig, core.config = require 'custom.resdaynCore.config'
---@param pid integer
function core.setupNewPlayer(pid)
local player = core.tableConfig['players']
player.dbid = core.functions.generateDbID()
player.money = 500
player.isDead = false
player.job = ""
player.name = Players[pid].name
HebiDB:insertToTable('players', { player })
end
---@param pid integer
---@param eventStatus table Unused but necessary
function core.onLogin(eventStatus, pid)
if core.functions.getDbID(Players[pid].name) then return end
core.setupNewPlayer(pid)
end
---@param pid integer
---@param eventStatus table Unused but necessary
function core.onDisconnect(eventStatus, pid)
HebiDB:writeTable()
end
---@param pid integer
function core.moneyCommand(pid)
local dbID = core.functions.getDbID(Players[pid].name)
if not dbID then tes3mp.SendMessage(pid, "Can't find balance", false) return end
local balance = core.functions.getBalance(dbID)
local message = "Your balance is " .. tostring(balance) .. " septims \n"
tes3mp.SendMessage(pid, message, false)
end
---@param pid integer Player ID
---@param cmd table
function core.giveMoney(pid, cmd)
local sourceDbId, targetDbId = core.functions.getDbId(Players[pid].name), core.functions(Players[cmd[2]].name)
if not (sourceDbId or targetDbId) then
tes3mp.SendMessage(pid, "Can't find players.", false)
return
end
local sCoords, tCoords = core.functions.getPlayerCoords(pid), core.functions.getPlayerCoords(cmd[2])
if -(sCoords - tCoords) < 10 then
tes3mp.SendMessage(pid, "Too far from target player.", false)
return
end
core.functions.removeMoney(pid, cmd[3])
core.functions.addMoney(cmd[2], cmd[3])
end
function core.deathEventValidator(eventStatus, pid)
eventStatus.validDefaultHandler = false
return eventStatus
end
--- Death Handler - We want a basic medical system. Keep Player in Place Until Revive.
---@param eventStatus table
---@param pid integer Player ID
function core.onPlayerDeath(eventStatus, pid)
local dbId = core.functions.getDbID(Players[pid].name)
if not dbId then return end
core.isDead[pid] = true
core.functions.changeDeathStatus(dbId)
core.functions.sendSpell(pid, "burden_enable", enumerations.spellbook.ADD)
repeat
core.functions.wait(0)
until not (core.isDead[pid] or core.functions.coolDown(pid, 30))
core.functions.sendSpell(pid, "burden_enable", enumerations.spellbook.REMOVE)
end
function core.reviveCommand(pid, target)
if not target[2] then return end
target = tonumber(target[2])
if not core.functions.isPlayerOnline(target) or target == pid or target < 0 then
tes3mp.SendMessage(pid, "Could not find player(s). \n", false)
return
end
local sDbId = core.functions.getDbID(Players[pid].name)
local tDbId = core.functions.getDbID(Players[target].name)
if -(core.functions.getPlayerCoords(pid) - core.functions.getPlayerCoords(target)) > 1 then
tes3mp.SendMessage(pid, "You are not close enough to revive. \n", false)
return
end
if not core.functions.checkMedicStatus(sDbId) then
tes3mp.SendMessage(pid, "You are not a medic. \n", false)
return
end
tes3mp.SendMessage(pid, "Reviving Player \n", false)
core.functions.sendSpell(pid, "burden_enable", enumerations.spellbook.ADD)
core.functions.wait(10)
core.functions.changeDeathStatus(tDbId)
core.isDead[target] = not core.isDead[target]
core.functions.sendSpell(pid, "burden_enable", enumerations.spellbook.REMOVE)
end
function core.OnServerPostInit()
core.functions.createBurdenSpell("Dead", 900)
end
---@param pid integer Player invoking the command
---@param cmd string command requested referring to a specific PID
function core.checkPlayerJob(pid, cmd)
if Players[pid].data.settings.staffRank < 1 then return end
if not cmd[2] then return end
if not Players[tonumber(cmd[2])] then
tes3mp.SendMessage(pid, "Player not found.\n")
return
end
local playerName = Players[tonumber(cmd[2])].name
local dbId = core.functions.getDbID(playerName)
requestedFactionStatus = core.functions.checkJob(dbId)
local message = playerName
if requestedFactionStatus == "" then
message = message .. " has no job.\n"
else
message = message .. "'s current job is " .. requestedFactionStatus .. "\n"
end
tes3mp.SendMessage(pid, message, false)
end
function core.playerCoordsCommand(pid)
tes3mp.SendMessage(pid, tostring(core.functions.getPlayerCoords(pid)) .. '\n', false)
end
customCommandHooks.registerCommand("cash", core.moneyCommand)
customCommandHooks.registerCommand("givemoney", core.giveMoney)
customCommandHooks.registerCommand("revive", core.reviveCommand)
customCommandHooks.registerCommand("job", core.checkPlayerJob)
customCommandHooks.registerCommand("coords", core.playerCoordsCommand)
customEventHooks.registerValidator("OnObjectDialogueChoice", core.functions.disableTradersTrainers)
customEventHooks.registerValidator("OnPlayerSpellsActive", core.functions.disableDuplicateMagicEffects)
customEventHooks.registerValidator("OnPlayerDeath", core.deathEventValidator)
customEventHooks.registerHandler("OnPlayerDeath", core.onPlayerDeath)
customEventHooks.registerHandler("OnServerPostInit", core.OnServerPostInit)
customEventHooks.registerHandler("OnPlayerFinishLogin", core.onLogin)
customEventHooks.registerHandler("OnPlayerDisconnect", core.onDisconnect)
return core