■ホムンクルス基礎知識 PrivateMoon :ttp://www15t.sakura.ne.jp/~privatemoon/alc/hom_100.html Chemical Company :ttp://blog.livedoor.jp/meta_mor/archives/50073961.html
>>9 ちょっと考えればわかるだろ if (type == LIF or type == LIF_H or type == AMISTR or type == AMISTR_H or type == LIF2 or type == LIF_H2 or type == AMISTR2 or type == AMISTR_H2) then result = GetMyEnemyA (myid) ←ここのAをBに変える
OnMOVE_CMDの local curX, curY = GetV (V_POSITION,MyID) if (math.abs(x-curX)+math.abs(y-curY) > 15) then って部分を local OwnX, OwnY = GetV (V_POSITION,GetV (V_OWNER,MyID)) if (x > OwnX+14 or x < OwnX-14 or y > OwnY+14 or y < OwnY-14) then if(x > OwnX+14) then x = OwnX+14 end if(x < OwnX-14) then x = OwnX-14 end if(y > OwnY+14) then y = OwnY+14 end if(y < OwnY-14) then y = OwnY-14 end end って書き換えるとAlt+右クリックで戻ってこなくなることはなくなる (長いし、いらない機能だけどね)
local ownerTarget = GetV (V_TARGET,owner) local ownerMotion = GetV (V_MOTION,owner) if(ownerTarget ~= 0 and ownerMotion == MOTION_ATTACK) then return ownerTarget end