27.04.2013, 12:49
pawn Код:
Inventory[playerid][Gold] = 1; //It will set to one.
Inventory[playerid][Gold]++; //Will increase with the current value, +1.
Inventory[playerid][Gold]--; //Same as above, but reduces -1.
Inventory[playerid][Gold] += 5; //Adds +5 to the current value.
Inventory[playerid][Gold] -= 5; //Reduces -5 to the current value.