19.06.2009, 20:35
If the TextDraw isn't for each player diferent, then yes.
How can I change this:
in to a switch:
?
How can I change this:
Code:
if(newkeys & KEY_FIRE) {
}
Code:
switch (newkeys &&) { //something diferent here
case KEY_FIRE: {
}
}

