06.08.2017, 21:27
Note that you can have named parameters in pawn:
pawn Код:
#include <a_samp>
main () {
AFunction(.somethingElse = 666.0, .something = 15);
}
AFunction(something = 5, Float:somethingElse = 15.0) {
printf("%d %.2f", something, somethingElse);
}