Skip to content

Latest commit

 

History

History
31 lines (25 loc) · 691 Bytes

README.md

File metadata and controls

31 lines (25 loc) · 691 Bytes

TDW Unsigned long

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.

Installation

  1. Download library.
  2. All files move into folder pawno/includes. But, you can use the flag -i<path> to specify an alternative path.
  3. Include it:
#include <a_samp> // standart SAMP library
#include <tdw_ulong>

Example:

#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);
}