Skip to content

API for Half-Life that let you set custom models to players.

License

Notifications You must be signed in to change notification settings

rtxa/HL-Player-Models-API

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 

Repository files navigation

HL Player Models API

Author Version Last Update Source Code

☉ Introduction

This API for Half-Life was made with the aim in mind of being able to use differents skins in Teamplay mode. Normally this is not possible without breaking the gameplay or making a lot of changes that will imply modify every plugin making it unpractical.

Now with this you can add classes for a Zombie Mod, etc.

☉ Description

This let you set custom models to the players and reset them to the default model. The custom model will stay until the player disconnects or you reset it manually.

☰ Natives

/**
 * Sets a custom player model.
 *
 * @param id      Player index
 * @param model   Model path
 */
native hl_set_player_model(id, const model[])

/**
 * Restores default model of player.
 *
 * @param id	Player index
 */
native hl_reset_player_model(id)

/**
 * Returns the team id of the player, and optionally retrieves the name of
 * the team.
 *
 * @param id            Player index
 * @param team          Buffer to store team name
 * @param len           Maximum buffer length
 */
native hl_get_player_team(id, team[] = "", len = 0)

/**
 * Sets the player's team without killing him.
 *
 * @param id        Player index
 * @param teamid	Team id
 */
native hl_set_player_team(id, teamid)

☰ Requirements

⚙ Installation

  1. Download the attached files and extract them in your scripting folder, then type #include <hl_player_models_api> in your plugin to be able to use the functions.
  2. Compile hl_player_models_api.sma and add it to your plugin list in plugins.ini to turn on the API.

The API is ready to use.

☉ Notes

  • Remember to install Orpheu or ReAPI (ReHLDS) in order to use the API.
  • Any custom model that is going to be set to the player has to be previously precached.
  • It's not necessary the models to be located in models/player/x/x.mdl. Also, you can use an sprite as a player model if you want.
  • If you want to know what model is using a player, save the number that precache_model() gives you, associate the value with a name. Then, you will be able to know the player's model by his modelindex.

⛏ To do

  • ☑ Add support for ReApi (ReHLDS).
  • ☐ (Debatable) Probably the server will crash if you try to change the team of 32 players at the same time (Fullupdate spam?). Make a queue and delay team changes to avoid any issue (That will make the plugin much more safer for team changing unlike natives from HL Stocks).

⚛ Sample plugin

I leave you this sample plugin called “Skin Menu” so you can test it. The skin list can be set in AMX Mod X config's folder creating this file using following format.

skin-list.cfg

Normal Barney;  models/player/barney/barney.mdl
Postal;         models/madskillz/postal.mdl
Banana Dancer;  models/madskillz/bananadancer.mdl
Bender;         models/madskillz/bender.mdl
Scream;         models/madskillz/scream.mdl
Droid;          models/madskillz/droid.mdl
Cool Barney;    models/madskillz/clanfn.mdl
  • say !skins [Displays a menu where he can choose a custom skin]
  • say !rskin [Reset player to his original skin]

About

API for Half-Life that let you set custom models to players.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published