28.08.2012, 08:26
Quote:
mm so this is one of usage of that Vecotral Pawn Plugin .. :d
i dont know what it exactly do may be your include help out O; |
What I do here is:
cmap -> store the data of the bomb
cvector -> store all the bomb cmaps
Example:
PHP код:
BombMap = cmap();
BombVector = cvector();
cmap_insert_float(BombMap, "posX", posx)
cmap_insert(BombMap, "player", playerid)
cvector_push_back(BombVector, BombMap);
It can also be done with static arrays, but I was testing the Vectoral pawn with this.