Witamy w Nieoficjalnym polskim support'cie AMX Mod X
Witamy w Nieoficjalnym polskim support'cie AMX Mod X, jak w większości społeczności internetowych musisz się zarejestrować aby móc odpowiadać lub zakładać nowe tematy, ale nie bój się to jest prosty proces w którym wymagamy minimalnych informacji.
|
Guest Message by DevFuse
3rdParty
CSX
DoDX
Engine
ESF
Fakemeta
Fun
GeoIP
HamSandwich
JSON
NS
nVault
REAPI
Sockets
Sql
SQLx
TFCX
TSFUN
TSX
ammopacks
amxbans_core
amxbans_main
atac
basebuilder
celltrie
chr_engine
cod
codmod
colorchat
credits
csdm
dHUD
diablo_nowe
entlib
expmod
expmod_achievements
expmod_mission
expmod_shop
fvault
ggpro
gunxpmod
ncodmod
netdb
orpheu
orpheu_advanced
orpheu_const
orpheu_memory
orpheu_stocks
roulette
StripWeapons
zmvip
zombie_plague_advance
zombieplague
zombieplaguenew1.3
Coreamxbans_core
amxbans_main
atac
basebuilder
celltrie
chr_engine
cod
codmod
colorchat
credits
csdm
dHUD
diablo_nowe
entlib
expmod
expmod_achievements
expmod_mission
expmod_shop
fvault
ggpro
gunxpmod
ncodmod
netdb
orpheu
orpheu_advanced
orpheu_const
orpheu_memory
orpheu_stocks
OrpheuGetDLLFunction
OrpheuGetEngineFunction
OrpheuRegisterHookFromClass
OrpheuRegisterHookFromEntity
OrpheuRegisterHookFromObject
pokemodOrpheuGetEngineFunction
OrpheuRegisterHookFromClass
OrpheuRegisterHookFromEntity
OrpheuRegisterHookFromObject
roulette
StripWeapons
zmvip
zombie_plague_advance
zombieplague
zombieplaguenew1.3
amxconst
amxmisc
amxmodx
cellarray
chatcolor
core
datapack
file
float
hlsdk_const
lang
message_const
message_stocks
messages
newmenus
sorting
string
time
vault
vector
Cstrikeamxmisc
amxmodx
cellarray
chatcolor
core
datapack
file
float
hlsdk_const
lang
message_const
message_stocks
messages
newmenus
sorting
string
time
vault
vector
CSX
DoDX
Engine
ESF
Fakemeta
Fun
GeoIP
HamSandwich
JSON
NS
nVault
REAPI
cssdk_const
hlsdk_const
reapi
reapi_engine
reapi_engine_const
reapi_gamedll
reapi_rechecker
reapi_reunion
reapi_vtc
Regexhlsdk_const
reapi
reapi_engine
reapi_engine_const
reapi_gamedll
reapi_rechecker
reapi_reunion
reapi_vtc
Sockets
Sql
SQLx
TFCX
TSFUN
TSX
#if defined _orpheu_stocks_included #endinput #endif #define _orpheu_stocks_included #include#include #include /** * Retrieves an engine function handler by having its name as a member of the struct that hold * engine functions and the name that you give it in the file where you define the function * The name must be the same as the one in the file where the function is defined * * @param memberName The name of the member of the struct that holds the address of the function * Example: pfnPrecacheModel * The struct representation can be seen in hlsdk at multiplayer/engine/eiface.h with the name "enginefuncs_s" * * @param libFunctionName The name of the function as it is in the file where the function is defined * * @return A handler to the function */ stock OrpheuFunction:OrpheuGetEngineFunction(const memberName[],const libFunctionName[]) { static OrpheuStruct:engineFunctions if(!engineFunctions) { engineFunctions = OrpheuGetEngineFunctionsStruct() } return OrpheuCreateFunction( OrpheuGetStructMember(engineFunctions,memberName),libFunctionName ) } /** * Retrieves a dll function handler by having its name as a member of the struct that hold * dll functions and the name that you give it in the file where you define the function * The name must be the same as the one in the file where the function is defined * * @param memberName The name of the member of the struct that holds the address of the function * Example: pfnGameInit * The struct representation can be seen in hlsdk at multiplayer/engine/eiface.h with the name "DLL_FUNCTIONS" * * @param libFunctionName The name of the function as it is in the file where the function is defined * * @return A handler to the function */ stock OrpheuFunction:OrpheuGetDLLFunction(const memberName[],const libFunctionName[]) { static OrpheuStruct:OrpheuDLLFunctions if(!OrpheuDLLFunctions) { OrpheuDLLFunctions = OrpheuGetDLLFunctionsStruct() } return OrpheuCreateFunction( OrpheuGetStructMember(OrpheuDLLFunctions,memberName),libFunctionName ) } stock OrpheuHook:OrpheuRegisterHookFromClass(const entityClassName[],const libFunctionName[],const libClassName[],const hookFunctionName[],OrpheuHookPhase:phase = OrpheuHookPre) { return OrpheuRegisterHook(OrpheuGetFunctionFromClass(entityClassName,libFunctionName,libClassName),hookFunctionName,phase) } stock OrpheuHook:OrpheuRegisterHookFromEntity(id,const libFunctionName[],const libClassName[],const hookFunctionName[],OrpheuHookPhase:phase = OrpheuHookPre) { return OrpheuRegisterHook(OrpheuGetFunctionFromEntity(id,libFunctionName,libClassName),hookFunctionName,phase) } stock OrpheuHook:OrpheuRegisterHookFromObject(object,const libFunctionName[],const libClassName[],const hookFunctionName[],OrpheuHookPhase:phase = OrpheuHookPre) { return OrpheuRegisterHook(OrpheuGetFunctionFromObject(object,libFunctionName,libClassName),hookFunctionName,phase) }
Pobierz plik orpheu_stocks.inc