mirror of
https://github.com/alliedmodders/amxmodx.git
synced 2024-12-25 22:35:37 +03:00
Added native support for set_speak and get_speak and SetSpeak
This commit is contained in:
parent
9bec921fd8
commit
421c62c6a0
@ -96,6 +96,9 @@ stock AttachView(iIndex, iTargetIndex)
|
|||||||
stock SetView(iIndex, ViewType)
|
stock SetView(iIndex, ViewType)
|
||||||
return set_view(iIndex, ViewType)
|
return set_view(iIndex, ViewType)
|
||||||
|
|
||||||
|
stock SetSpeak(iIndex, iSpeakFlags)
|
||||||
|
return set_speak(iIndex, iSpeakFlags)
|
||||||
|
|
||||||
forward vexd_pfntouch(pToucher, pTouched)
|
forward vexd_pfntouch(pToucher, pTouched)
|
||||||
|
|
||||||
forward ServerFrame()
|
forward ServerFrame()
|
@ -62,6 +62,10 @@ native precache_generic(szFile[]);
|
|||||||
/* Precaches an event. */
|
/* Precaches an event. */
|
||||||
native precache_event(type, Name[], {float,_}:...);
|
native precache_event(type, Name[], {float,_}:...);
|
||||||
|
|
||||||
|
//set/get a user's speak flags
|
||||||
|
native set_speak(iIndex, iSpeakFlags)
|
||||||
|
native get_speak(iIndex)
|
||||||
|
|
||||||
//Drops an entity to the floor (work?)
|
//Drops an entity to the floor (work?)
|
||||||
native drop_to_floor(entity)
|
native drop_to_floor(entity)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user