奇迹MU自动转职触发器

奇迹MU自动转职触发器
使用此触发器后,所有新建角色自动完成转职,之后无需再进行转职任务。
CREATE TRIGGER 自动转职 ON Character

AFTER INSERT
AS
SET NOCOUNT ON
UPDATE Character SET Class=1
FROM Inserted
WHERE Inserted.Class=0 and Character.accountid=inserted.accountid
and Character.name=inserted.name

UPDATE Character SET Class=17
FROM Inserted
WHERE Inserted.Class=16 and Character.accountid=inserted.accountid
and Character.name=inserted.name
UPDATE Character SET Class=33
FROM Inserted
WHERE Inserted.Class=32 and Character.accountid=inserted.accountid
and Character.name=inserted.name
SET NOCOUNT OFF

相关文章

发表新评论