Some one recently uploaded a flute to DR. I have no idea where the script or the gani came from, but it's not ours (im not sure the scripter who uploded it made it). Anyway, i think it may have caused a problem in other ganis (example in pic) i have included the flute script below, along with a pic of a screwed up gani (i even reloaded the gani, but nothing changed)
NPC Code:
//#CLIENTSIDE
if (created) {
flutecount = strtofloat(#s(flutecount))+1;
setstring flutecount,#v(flutecount);
setstring client.flutecount,#s(flutecount);
}
if (weaponfired) {
if (strtofloat(#s(client.flutecount))<=0)
destroy;
setplayerprop #P2,flute0.png;
setani playsax,;
while (!keydown(6)) {
for (i=0; i<4; i++) if (keydown(i)) {
if (keydown(4)) {
// if (i in {0,1})
// setani playsax2,flute#v(9+i).mid;
} else
setani playsax2,flute#v(1+i+(keydown(5)? 4:0)).wav;
}
freezeplayer 0.05;
sleep 0.05;
}
}
if (bomyweaponfired) {
if (strtofloat(#s(client.flutecount))<=0)
destroy;
setplayerprop #P2,flute0.png;
setani bomy_playsax,;
while (!keydown(6)) {
for (i=0; i<4; i++) if (keydown(i)) {
if (keydown(4)) {
// if (i in {0,1})
// setani bomy_playsax2,flute#v(9+i).mid;
} else
setani bomy_playsax2,flute#v(1+i+(keydown(5)? 4:0)).wav;
}
freezeplayer 0.05;
sleep 0.05;
}
}
if (playerhurted) {
timeout = 0;
}