mirror of
https://github.com/a-bad-dev/simple-shooter-game.git
synced 2026-06-08 20:12:11 +00:00
* Refactor some of the code, multiple bug fixes * Fix something stupid * More bug fixes * LOTS OF STUFF * Make the sniper alot stronger and other changes * Prevent Players from respawning in the middle of a match * Fix stupid mistake * Small update * More updates * Remove minimap access.. and downgrade the sniper class
40 lines
No EOL
922 B
Lua
40 lines
No EOL
922 B
Lua
local papi = {}
|
|
|
|
function papi.register_model(name, def)
|
|
return mcl_player.player_register_model(name, def)
|
|
end
|
|
|
|
function papi.set_model(player, model)
|
|
return mcl_player.player_set_model(player, model)
|
|
end
|
|
|
|
function papi.get_animation(player)
|
|
return mcl_player.player_get_animation(player)
|
|
end
|
|
|
|
function papi.get_textures(player)
|
|
return player:get_properties().textures
|
|
end
|
|
|
|
function papi.set_textures(player, textures)
|
|
player:set_properties({textures = textures})
|
|
end
|
|
|
|
function papi.set_animation(player, anim_name, speed, _)
|
|
return mcl_player.player_set_animation(player, anim_name, speed)
|
|
end
|
|
|
|
local metatable = {
|
|
__index = function (_, key)
|
|
return mcl_player.player_attached[key]
|
|
end,
|
|
__newindex = function (_, key, value)
|
|
rawset(mcl_player.player_attached, key, value)
|
|
end
|
|
}
|
|
|
|
papi.player_attached = {}
|
|
|
|
setmetatable(papi.player_attached, metatable)
|
|
|
|
return papi |