22.06.2013, 00:58
Possibly.
Anyway, a thought - if you want open-source development, and want PAWN-style documentation comments in the various SA-MP includes, why not start there and write said comments? I'm sure Kalcor would be far more willing to include them if they already exist (Disclaimer: I said "more" willing, I don't speak for him and so that doesn't mean he WILL take them).
Also, if you want consistent functions, why not submit a patch to fixes.inc? It would be pretty easy to do something like:
Wrap all the natives with that, and make sure the "Create" functions append the correct flag, and you're away. Though I admit that's more of a stop-gap.
Anyway, a thought - if you want open-source development, and want PAWN-style documentation comments in the various SA-MP includes, why not start there and write said comments? I'm sure Kalcor would be far more willing to include them if they already exist (Disclaimer: I said "more" willing, I don't speak for him and so that doesn't mean he WILL take them).
Also, if you want consistent functions, why not submit a patch to fixes.inc? It would be pretty easy to do something like:
pawn Код:
if (id & PLAYER_TEXT_DRAW_FLAG) PlayerTextDrawFunc(id & ~PLAYER_TEXT_DRAW_FLAG);
else TextDrawFunc(id);