21.01.2011, 17:49
You need to make the "public VehicleDelete(playerid);" - instead of only forwarding.
Also, I have an tip. Instead of using "forward callback(params);" and then "public callback(params){}" you can use: "CB:callback(params){}" - It's faster and it saves some diskspace.
Just add this at the top of your script:
- Kevin
Also, I have an tip. Instead of using "forward callback(params);" and then "public callback(params){}" you can use: "CB:callback(params){}" - It's faster and it saves some diskspace.
Just add this at the top of your script:
pawn Код:
#define CB:%0(%1) forward %0(%1); public %0(%1)