There's a lot more parameters to showani than what you've tried.
showani(id, x, y, direction, animation, p1, p2, p3);
The extra parameters aren't needed.
If the gani was just the icon:
PHP Code:
//#CLIENTSIDE
function onCreated() {
showani(200, this.x, this.y, 2, "gen_quest-icon"); // Displays Gani At NPC's X and Y
}
However I'm unable to determine what the gani is so you might just have the idle gani with the icon above it's head like u mentioned, then you would do something like the following.
PHP Code:
//#CLIENTSIDE
function onCreated() {
setcharani("gen_quest-icon", ""); // Sets the NPC's Gani
}
Hope this helps.