解决21亿变负数的问题,修改一下即可
经过测试,钱达到2147483648 就会变负数(不过好像不是很稳定,有一次变成-600多)
不能使钱超过这个数字存放,但是可以解决玩家金钱变负造成的损失
方法:
1.打开你的 SQL "企业管理器"
4 右键点击Character表
5 选择[所有任务]--[管理触发器]
6 把下面的SQL语句copy进去。按保存即可 dedecms.com
CREATE TRIGGER [Restrict_Money] ON [dbo].[Character]
after update
as
Update [Character] set [Character].money=>2140000000
From Inserted
Where Inserted.money<0 and [Character].accountid=inserted.accountid
and [Character].name=inserted.name
Tags:
作者:佚名评论内容只代表网友观点,与本站立场无关!
评论摘要(共 0 条,得分 0 分,平均 0 分)
查看完整评论