分享到新浪微博 分享到QQ空间 打印

[疑问] 看看这教本

看看这教本

这脚本有参数过多的问题,各位看一下!
#dynamic 0x1DB902
lock
faceplayer
msgbox @question 0x5
compare LASTRESULT 0x1
if 0x1 goto @yes
if 0x0 goto @no
release
end

#org @yes
checkmoney  0x960 0x00
if 0x0 goto @no2
paymoney  0x96 0x00
wildbattle 0x960 0x46 0x0
end

#org @question
= [player]are you ok?you can pay 1500dolles to catch me!
#org @no
=886

#org @no2
msgbox @no24
end

#org @no24
=please have 1500dolles!

TOP

按照你1.1.1的XSE来看
checkmoney  0x960 0x00

这一行有问题。checkmoney的参数最多只能有2个字节,而你的这行拆解开来是3个字节。


1.1.3版本的XSE已经允许以上的写法了

*经试验推翻了以上说法,真实的原因是你的checkmoney和参数中间有2个空格,这样XSE会认为存在3个参数。


想死你们了!

TOP

难道没注意么

dynamic下面直接没有#org……

TOP