Quote:
Originally posted by Kaimetsu
If I was working on my 3D thing and found that there was a problem with the transformation matrix, would I post the whole script and just say "Fix it"? No, I would take out the relevant parts and post those. If you can't identify what the relevant part is then you need to spend longer than half an hour.
|
Sorry...I figured if I posted the whole script it would help.
All I know is that:
NPC Code:
function gethitter() {
hitter = -1;
for (i=0; i<playerscount; i++)
if (players[i].id==this.hitterid) {
hitter = i;
break;
}
}
is not working for whatever reason
