52 lines
1.6 KiB
Lua
52 lines
1.6 KiB
Lua
-----------------------------------
|
|
-- func: addallattachments
|
|
-- desc: Unlocks all attachments
|
|
-----------------------------------
|
|
---@type TCommand
|
|
local commandObj = {}
|
|
|
|
commandObj.cmdprops =
|
|
{
|
|
permission = 1,
|
|
parameters = 's'
|
|
}
|
|
|
|
local validAttachments =
|
|
{
|
|
8193, 8194, 8195, 8196, 8197, 8198, 8224, 8225, 8226, 8227,
|
|
8449, 8450, 8451, 8452, 8453, 8454, 8455, 8456, 8457, 8458,
|
|
8459, 8460, 8461, 8462, 8463, 8464, 8465, 8466, 8481, 8482,
|
|
8483, 8484, 8485, 8486, 8487, 8488, 8489, 8490, 8491, 8492,
|
|
8493, 8494, 8495, 8496, 8497, 8498, 8513, 8514, 8515, 8516,
|
|
8517, 8518, 8519, 8520, 8521, 8522, 8523, 8524, 8525, 8526,
|
|
8527, 8528, 8545, 8546, 8547, 8548, 8549, 8550, 8551, 8552,
|
|
8553, 8554, 8555, 8556, 8557, 8577, 8578, 8579, 8580, 8581,
|
|
8582, 8583, 8584, 8585, 8586, 8587, 8588, 8589, 8590, 8609,
|
|
8610, 8611, 8612, 8613, 8614, 8615, 8616, 8617, 8618, 8619,
|
|
8620, 8621, 8622, 8641, 8642, 8643, 8644, 8645, 8646, 8648,
|
|
8649, 8650, 8651, 8652, 8653, 8654, 8655, 8673, 8674, 8675,
|
|
8676, 8677, 8678, 8680, 8681, 8682, 8683,
|
|
}
|
|
|
|
local function AddAllAttachments(player)
|
|
for i = 1, #validAttachments do
|
|
player:unlockAttachment(validAttachments[i])
|
|
end
|
|
|
|
player:printToPlayer(string.format('%s now has all attachments.', player:getName()))
|
|
end
|
|
|
|
commandObj.onTrigger = function(player, target)
|
|
if target == nil then
|
|
AddAllAttachments(player)
|
|
else
|
|
local targ = GetPlayerByName(target)
|
|
if targ == nil then
|
|
player:printToPlayer(string.format('Player named "%s" not found!', target))
|
|
else
|
|
AddAllAttachments(targ)
|
|
end
|
|
end
|
|
end
|
|
|
|
return commandObj
|