diff options
Diffstat (limited to 'gamemode/player_class/player_army.lua')
| -rw-r--r-- | gamemode/player_class/player_army.lua | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/gamemode/player_class/player_army.lua b/gamemode/player_class/player_army.lua new file mode 100644 index 0000000..7e20c13 --- /dev/null +++ b/gamemode/player_class/player_army.lua @@ -0,0 +1,16 @@ + +AddCSLuaFile() + +local PLAYER = {} + +function PLAYER:GetHandsModel() + + return { model = "models/weapons/c_arms_cstrike.mdl", skin = 1, body = "0100000" } + +end + +function PLAYER:Spawn() + +end + +player_manager.RegisterClass( "player_army", PLAYER, "player_baseclass" )
\ No newline at end of file |
