Quote:
|
Originally Posted by |2ob
Quote:
|
Originally Posted by Nick
Doesn't amxmodx use engine instead of VexdUtilites?
Change #include <amxmod> to #include <amxmodx>
|
If i change Vexd_Utilities to engine i get 26 errors.
|
That is because Vexd and Engine natives have changed. This is what you do, you go into the AMXX Includes folder, open up Vexd_Utilites, read what it says
it would say something like
Code:
stock Entvars_Set_Int(iIndex, iVariable, iNewValue)
return entity_set_int(iIndex, iVariable, iNewValue)
The first value is what was used in old VEXD module, the second value is what is used in the ENGINE module.
Soo knowing this, you take your code, Replace anything that says
Entvars_Set_Int to
entity_set_int
And it will work.
__________________