View Single Post
OciXCrom
Veteran Member
Join Date: Oct 2013
Location: Macedonia
Old 03-29-2020 , 10:05   Re: Looking for Custom header tutorisl
Reply With Quote #6

Style 1 natives are deprecated. You should use style 0. Example:

Code:
public native_set_user_money(iPlugin, iParams) {     new id = get_param(1);     zp_player_money[id] = get_param(2);     if (!is_user_alive(id))     {         return 0;     }     sent_money(id, value)     return 0; }

PS: you set the function name to "get_user_money", but you're using "native_get_user_money".
__________________

Last edited by OciXCrom; 03-29-2020 at 10:07.
OciXCrom is offline
Send a message via Skype™ to OciXCrom