22.02.2014, 16:00
Quote:
And how can i change it? If i create the object twice before my feet and i try to delete it with the command for deleting the object, it only delete the 1 object not the object that i created twice. But i want that it delete all the objects that i created.
|
pawn Код:
new a;
a = 1;
a = 2;
a = 3;
printf("a = %d", a); // prints: "a = 3";