我有一个游戏服务器,以及错误溢出问题6.
调试:
If Spell(spellnum).END > 0 Then
TempPlayer(Index).END = GetPlayerStat(Index, Endurance)
SetPlayerStat Index, Endurance, GetPlayerStat(Index, Endurance) + Spell(spellnum).END
SendStats Index
End If
DEBUG强调:
TempPlayer(Index).END = GetPlayerStat(Index, Endurance)
答案 0 :(得分:0)
你的回报是什么样的:
GetPlayerStat(索引,耐力)
您可以查看退货类型和分配情况吗?通常当我遇到溢出问题时,例如尝试将“long”(高值)这样的数字放在“integer”或“single”类型的变量中。