Ok, so I am scripting a hitman plugin, which bascially assigns someone a player to kill, and it stores there id and the target's id in one line.
So would something like this work?
Code:
//in the global declarationsnew g_hitman[33][33]//in the code
g_hitman[id][targetid]//now the ID is assigned by the function, but how would I assign the targetid?
Do you guys understand this? Storing the player's id and his target's id in one multi-dimensional array?
You don't need a multi-demensional array for this unless your trying to hold another value or something in there.. You can just do this..