Captain Fairmount - invisible model

Captain Fairmount (3393), spawned in Barrens, has an invisible model.

If creature_template.AIName is ‘EventAI’ or ‘SmartAI’ or ‘Whatever111!!’ the model will be invisible. If AIName is empty the model will be fine.

Cookies to whoever finds the reason of this little problem.

I first thought it was her EAI scripts so I converted them to SAI. It didn’t fix the issue (anyway, it still happens without any scripts)

[CODE]SET @Fairmount = 3393; – Captain Fairmount
DELETE FROM creature_ai_scripts WHERE creature_id=@Fairmount; – three scripts
DELETE FROM smart_scripts WHERE (entryorguid=@Fairmount AND source_type=0);
INSERT INTO smart_scripts (entryorguid,source_type,id,link,event_type,event_phase_mask,event_chance,event_flags,event_param1,event_param2,event_param3,event_param4,action_type,action_param1,action_param2,action_param3,action_param4,action_param5,action_param6,target_type,target_param1,target_param2,target_param3,target_x,target_y,target_z,target_o,comment) VALUES
(@Fairmount,0,0,0,4,0,100,0,0,0,0,0,11,9128,0,0,0,0,0,1,0,0,0,0,0,0,0,‘Captain Fairmount: On aggro cast Battle Shout self’),
(@Fairmount,0,1,0,2,0,100,0,30,30,0,0,11,19134,0,0,0,0,0,2,0,0,0,0,0,0,0,‘Captain Fairmount: At 30% hp cast Frightening Shout’),
(@Fairmount,0,2,0,13,0,100,0,5000,5000,0,0,11,12555,0,0,0,0,0,2,0,0,0,0,0,0,0,‘Captain Fairmount: On enemy casting cast Pummel’);
UPDATE creature_template SET AIName=‘SmartAI’ WHERE entry=@Fairmount;[/sql]

Clearing WDB cache, re-spawn the mob with new guid or set modelid (in creature table) to 0 didn’t work

The invisible model is 16925 (if players morph to that, their model will be a guitar).

Weird stuff is weird…

[/CODE]

UPDATE `creature_model_info` SET `modelid_other_gender`=0 WHERE `modelid`=1855;
[/SQL]
http://www.foodhistory.com/foodnotes/road/va/abingdon/subway/02/04-image.jpg

One of those please. I like them.

Thanks a lot, cookies sent /emoticons/default_tongue.png

(Moved to tracker. Closed)

question i have… whats the difference here

SET @Fairmount = 3393; -- Captain Fairmount
[/sql]

and with

[sql]
SET @Fairmount := 3393; -- Captain Fairmount

No differences, I guess.