Added amb37, amb38, amb39 and amb205: various cstrike natives.

(Still need to test)
This commit is contained in:
Steve Dudenhoeffer
2007-04-25 15:40:15 +00:00
parent d682375d7d
commit 68d2b03e48
3 changed files with 224 additions and 0 deletions

View File

@ -295,3 +295,39 @@ native cs_set_user_zoom(index, type, mode);
/* Returns how a user is zooming during the native call. Values correspond to the above enum, but will return 0 if an error occurred.
*/
native cs_get_user_zoom(index);
/* Returns the submodel setting of the player.
* If this is 1, then the user has a backpack or defuser on their model (depending on team)
*/
native cs_get_user_submodel(index);
/* Sets the submodel setting of the player.
* If this is 1, then the user has a backpack or defuser on their model (depending on team)
* 0 removes it.
*/
native cs_set_user_submodel(index, value);
/* Gets or sets the user's last activity time. This is the time that CS's internal afk kicker
* checks to see who has been afk too long.
*/
native Float:cs_get_user_lastactivity(index);
native cs_set_user_lastactivity(index, Float:value);
/* Gets or sets the time that the hostage was last used.
*/
native Float:cs_get_hostage_lastuse(index);
native cs_set_hostage_lastuse(index, Float:value);
/* Gets or sets the time which the hostage can next be used.
*/
native Float:cs_get_hostage_nextuse(index);
native cs_set_hostage_nextuse(index, Float:value);
/* Gets or sets the time in which the C4 will explode.
*/
native Float:cs_get_c4_explode_time(index);
native cs_set_c4_explode_time(index, Float:value);