Quote:
Originally Posted by re333
No , zombie cant carry guns , it's not alllow in zp .
|
False. You can edit the ZP base .sma and recompile to allow weapons.
Quote:
Originally Posted by Anggara_nothing
For what this code :
Code:
register_forward(FM_PlayerPreThink, "fw_PlayerPreThink")
register_forward(FM_PlayerPreThink, "fw_PlayerPreThink_Post", 1)

|
Those register the forwards for PreThink (called very often, almost every frame). Post means AFTER in english (usually), so the post registers the call so that you can execute code proceeding the PreThink call. The 1 as the 3rd param makes it post.
__________________