A library for using the unsigned values in your code. It works on #emit, because PAWN have AMX-instructions for working with the unsigned values.
- Download library.
- All files move into folder
pawno/includes
. But, you can use the flag-i<path>
to specify an alternative path. - Include it:
#include <a_samp> // standart SAMP library
#include <tdw_ulong>
#include <tdw_ulong>
main()
{
new buffer[11];
new ulong:unsigned_value = cellmax;
unsigned_value *= 2;
ulong_string(buffer, unsigned_value);
printf("%s", buffer);
new signed_value = cellmax;
signed_value *= 2;
printf("%d", signed_value);
}