im using a gani script to play music for all players and this is done by setting a gani to one of their attributes. the gani script is below:
PHP Code:
SCRIPT
... some code
if (temp.play == 0) {
stopsound(temp.playm);
} else {
play2(temp.playm, player.x, player.y, temp.vlm);
}
... some code
SCRIPTEND
The gani script will play music for the specific individual, but when i use the stop command in the wNPC, the music wont stop. I even tried it CLIENTSIDE on the wNPC too.