Quote:
Originally Posted by Abagail
e.g:
pawn Код:
if(zombifiedvotes > unityvotes) { // more votes }
if(zombifiedvotes >= unityvotes) { // equal or more than unity votes }
if(zombifiedvotes == unityvotes) { // same amount of votes }
if(zombifiedvotes < unityvotes) { // less than unityvotes }
if(zombifiedvotes <= unityvotes) { // less or equal to }
Simple math functions should work if there are only two variables.
|
There will be a way more.