View Single Post
Author Message
farawayf
Senior Member
Join Date: Jan 2019
Old 01-27-2022 , 16:43   DHooks getting param
Reply With Quote #1

Hello.
How i can get the the value from function parameter in plugin with dhooks if the param is object and the object variable value is CBitVec ?

for example engine function:
PHP Code:
class someClass : public somePublic
{
    
int someInt;

public:
    
CBitVec<100anyName;
}; 
i want to do something like this on plugin. object = class *name
PHP Code:
if ( object->anyName.Get(99) ) 
{
    
// do something 


Last edited by farawayf; 01-27-2022 at 16:47.
farawayf is offline