找回密码
 注册
搜索
查看: 4034|回复: 39

新手need help

[复制链接]
门派:峨嵋派
发表于 2018-1-27 11:03:04 | 显示全部楼层 |阅读模式
em 的师姐师哥们有点懒啊,置顶的俗家巡城机器人 404了, 拜师的顺序要求也找不到明确说明
看来以后振兴峨嵋版需要我来了。
我会把练俗家遇到的点点滴滴都告诉大家的。

评分

1

查看全部评分

门派:峨嵋派
 楼主| 发表于 2018-1-27 15:26:43 | 显示全部楼层
首先属性,既然随便能改,则巡城阶段还是 悟性30 根骨30好点,气多。
武馆及拜师参考:
http://www.sjever.net/bbs/forum. ... &extra=page%3D1
http://www.sjever.net/bbs/forum. ... &extra=page%3D1
说实话,拜师都语焉不详,我是男ID,目前拜 丁敏君
峨嵋必须先学佛法在学内功,因此前几次巡城的POT手工学比较好。
下面重点来了,关于巡城机器人。
门派:峨嵋派
 楼主| 发表于 2018-1-27 15:39:44 | 显示全部楼层
mush的全套机器人中有巡城,还是不错的。本版置顶的机器人都404了
因此我下载的mush全套,
http://www.sjever.net/bbs/forum. ... &extra=page%3D1
这个mush对新手颇不友好。我一开始怎么配置都通不过,后面莫名其妙就好了,这个mush经常有莫名其妙的动作。开始基本的配置原则是让你配的都配上,不明白的就乱写几个字母。

总之,mush开始巡城了!!!
然后悲剧了,刚开始内力少,学习要睡觉的,然而,看下面的代码:
function xuexiSleep()
    EnableTriggerGroup("xuexi",false)
    if score.party and score.party=="神龙教" then
       return go(xuexiSleepOver,"神龙岛","卧室")
    end
    if score.party and score.party=="少林派" then
       return go(xuexiSleepOver,"shaolin/sengshe3","")
    end
    if score.party and score.party=="桃花岛" then
        if score.master and score.master=="黄药师" then
           return go(xuexiSleepOver,"桃花岛","客房")
        else
           return go(xuexiSleepOver,"归云庄","客房")
        end
    end
        if score.master and score.master=="杨过" then
           return go(xuexiSleepOver,"gumu/jqg/wshi","")
    end
        if score.master and score.master=="小龙女" then
           return go(xuexiSleepOver,"gumu/jqg/wshi","")
    end
        if score.party and score.party=="武当派" and score.gender=='女' then
       return go(xuexiSleepOver,"武当山","女休息室")
    end
        if score.party and score.party=="武当派" and score.gender=='男' then
       return go(xuexiSleepOver,"武当山","男休息室")
    end
        if score.party and score.party=="天龙寺" then
       return go(xuexiSleepOver,"dali/wangfu/woshi2","")
    end
        if score.party and score.party=="姑苏慕容" then
       return go(xuexiSleepOver,"姑苏慕容","厢房")
    end
        if score.party and score.party=="星宿派" then
       return go(xxSleepcheck,"星宿海","逍遥洞")
    end
        if score.party and score.party=="昆仑派" then
       return go(xuexiSleepOver,"昆仑山","休息室")
    end
        if score.party and score.party=="华山派" and score.gender=='男' then
       return go(xuexiSleepOver,"华山","男休息室")
    end
        if score.party and score.party=="华山派" and score.gender=='女' then
       return go(xuexiSleepOver,"华山","女休息室")
    end
        if score.party and score.party=="铁掌帮" and score.gender=='男' then
       return go(xuexiSleepOver,"铁掌山","男休息室")
    end
        if score.party and score.party=="铁掌帮" and score.gender=='女' then
       return go(xuexiSleepOver,"铁掌山","女休息室")
    end
    return xuexiFinish()
end
你没看错,mush中峨嵋的没睡觉。好在我够聪明,我改成了如下:
function xuexiSleep()
    EnableTriggerGroup("xuexi",false)
    if score.party and score.party=="峨嵋派" then
       return go(xuexiSleepOver,"emei/xiuxishi2","")
    end
    if score.party and score.party=="神龙教" then
       return go(xuexiSleepOver,"神龙岛","卧室")
    end
    if score.party and score.party=="少林派" then
       return go(xuexiSleepOver,"shaolin/sengshe3","")
    end
    if score.party and score.party=="桃花岛" then
        if score.master and score.master=="黄药师" then
           return go(xuexiSleepOver,"桃花岛","客房")
        else
           return go(xuexiSleepOver,"归云庄","客房")
        end
    end
        if score.master and score.master=="杨过" then
           return go(xuexiSleepOver,"gumu/jqg/wshi","")
    end
        if score.master and score.master=="小龙女" then
           return go(xuexiSleepOver,"gumu/jqg/wshi","")
    end
        if score.party and score.party=="武当派" and score.gender=='女' then
       return go(xuexiSleepOver,"武当山","女休息室")
    end
        if score.party and score.party=="武当派" and score.gender=='男' then
       return go(xuexiSleepOver,"武当山","男休息室")
    end
        if score.party and score.party=="天龙寺" then
       return go(xuexiSleepOver,"dali/wangfu/woshi2","")
    end
        if score.party and score.party=="姑苏慕容" then
       return go(xuexiSleepOver,"姑苏慕容","厢房")
    end
        if score.party and score.party=="星宿派" then
       return go(xxSleepcheck,"星宿海","逍遥洞")
    end
        if score.party and score.party=="昆仑派" then
       return go(xuexiSleepOver,"昆仑山","休息室")
    end
        if score.party and score.party=="华山派" and score.gender=='男' then
       return go(xuexiSleepOver,"华山","男休息室")
    end
        if score.party and score.party=="华山派" and score.gender=='女' then
       return go(xuexiSleepOver,"华山","女休息室")
    end
        if score.party and score.party=="铁掌帮" and score.gender=='男' then
       return go(xuexiSleepOver,"铁掌山","男休息室")
    end
        if score.party and score.party=="铁掌帮" and score.gender=='女' then
       return go(xuexiSleepOver,"铁掌山","女休息室")
    end
    return xuexiFinish()
end

把我们峨嵋加入了,注意: emei/xiuxishi2  是在rooms.lua中找到的地址,如果你悟性够,一看就明白,我的师傅是丁敏君,你可以改成离你师傅近的睡觉点。
门派:峨嵋派
 楼主| 发表于 2018-1-29 18:01:46 | 显示全部楼层
改mush 学习点数, 在  shujian.lua 改成如下,有两处:
function xuexi()
     exe('nick 回门派学习')
        messageShow('回门派学习')
        master = {}

        if hp.exp<150000 then
           master.times=10
        else
            -- ain usepot
           master.times=math.modf(hp.jingxue/60)
       if master.times<10 then master.times=10 end
           if master.times>50 then master.times=50 end
        end


function literate()
    exe('nick 学习读书写字')
       messageShow('学习读书写字!')
    DeleteTemporaryTriggers()
        if hp.exp<151000 then
            master.times=10
        else
            master.times=math.modf(hp.jingxue/100)
        if master.times<10 then master.times=10 end
            if master.times>50 then master.times=50 end
        end
        return check_busy(literateGo)
end
门派:峨嵋派
发表于 2018-1-28 13:58:54 | 显示全部楼层
聪明啊 我当初是改成了去成都关帝庙睡的觉
门派:峨嵋派
 楼主| 发表于 2018-1-29 10:38:28 | 显示全部楼层
50K 拜 孤鸿子 了

yue 峭壁
你一纵身向峭壁的洞口跃去。
洞口 -
  这里是峭壁上的洞口,洞口边插满了刀剑,里面黑乎乎的,你仔细定
了定神,好像洞里有一个人影正在研究武学。
  这是一个深秋的上午,太阳正高挂在东方的天空中。
  这里唯一的出口是 enter。
 飞雁穿柳刀(Chuanliu dao)
>
enter
山洞 -
  这里是峭壁上的山洞,里面黑乎乎的,一个老人满头白发,正在里面打坐。
  这里明显的出口是 eastdown 和 out。
 钢刀(Blade)
 峨嵋派第二代前掌门 孤鸿子(Guhong zi)
>
bai guhong zi
你想要拜孤鸿子为师。
【闲聊】孤鸿子「哈哈哈」大笑几声。
孤鸿子说道:「老夫垂死之年,终得到一个衣钵传人,真是可喜可贺 !」
孤鸿子决定收你为弟子。

你跪了下来向孤鸿子恭恭敬敬地磕了四个响头,叫道:「师父!」
恭喜您成为峨嵋派的第三代弟子。
>


all skill 80, 过阵
然后 参考:
http://www.sjever.net/bbs/forum. ... =%B9%C2%BA%E8%D7%D3
http://www.sjever.net/bbs/forum. ... B%E1%D2%CB%D7%BC%D2

不过mush里好像到不了孤鸿子,看来又要改了

评分

1

查看全部评分

门派:峨嵋派
 楼主| 发表于 2018-1-29 11:00:16 | 显示全部楼层
拜孤鸿子之后mush 工作的很好,不用改。
门派:峨嵋派
 楼主| 发表于 2018-1-29 12:09:27 | 显示全部楼层
cfdgem@tj 发表于 2018-1-29 11:00
拜孤鸿子之后mush 工作的很好,不用改。

虽然如此但是几乎每次找师傅都要昏倒,300多精力是不行,看来需要tuna
门派:峨嵋派
发表于 2018-1-29 14:24:14 | 显示全部楼层
刚开始玩,入了峨嵋,一脸懵逼,怎么玩
门派:峨嵋派
 楼主| 发表于 2018-1-29 15:02:40 | 显示全部楼层
nyq@tj 发表于 2018-1-29 14:24
刚开始玩,入了峨嵋,一脸懵逼,怎么玩

我的帖子哪一点没说清楚?,你得问的具体点
此地图很有用我觉得,我放在这里给自己看
http://www.sjever.net/bbs/plugin.php?id=map:map
门派:峨嵋派
发表于 2018-1-29 15:17:59 | 显示全部楼层
我还在用哪个462版本的巡城机器,也凑合,mush都没见过,也不知道怎么搞
您需要登录后才可以回帖 登录 | 注册

本版积分规则

Archiver|手机版|小黑屋|书剑永恒MUD ( 闽ICP备14012032号|闽公网安备 35050202000162号 )

GMT+8, 2025-6-9 01:19 , Processed in 0.050447 second(s), 30 queries .

Powered by Discuz! X3.5

© 2001-2025 Discuz! Team.

快速回复 返回顶部 返回列表