关于怀旧服,猎人,没有**,刚到六十想搞一身蓝色装备,有什么好的推荐?

猫猫猫猫猫? 猫猫猫猫猫?
回答
  • 我去申请 我去申请

    英雄无敌5-控制台修改及代码
    使用方法如下:
    第一步:在安装文件夹下的profiles里找到autoexec.cfg。记事本打开。最后一行。加上:setvar dev_console_password=schwinge-des-todes
    改后效果:
    startup
    mainmenu
    setvar dev_console_password=schwinge-des-todes
    第二步:我的文档\mygames\heroes of might and magic v\名字\input.cfg
    打开。找到
    obsolete,but strictly need for compability with some interfaces
    bind close_window 'esc'
    bind confirm_action 'enter'
    bind show_console '`'(此行自己添加)
    第三步:关键一步。打开游戏。进入地图。按`键
    输入enable_cheats
    然后会看到诸如使用cheat会失去游戏乐趣的厚道提示云云。然后就可以使用控制台了。另外。有些特殊的功能比如解除战争迷雾和隐藏操作界面什么的。需要自己修改input.cfg
    这里不多说了。奉上我的input.cfg。需要的自行下载。使用该input.cfg以后,可以:
    scroll键 显示fps和其它我不懂的参数
    ctrl+i 隐藏操作界面,多干净漂亮的画面,全快捷键操作吧.
    ctrl+p 障碍物半透明转换,
    在地下冒险就不会被上面黑黑的乳钟石挡住了,很好用.
    ctrl+w 显示3d模型,纹理贴图都没有了,超快.
    ctrl+y 特殊显示效果,我搞不懂,多按几次就变回正常了.
    ctrl+shift+m 清理内存
    不知道有没效果,反正我是1g内存的,存取档都很快.(这里引用某人帖子。忘记谁的了。b)
    还有些很bt的作弊键,比如
    adventure debug
    bind adventure_teleport 'ctrl'+'shift'+'t 传送
    bind adventure_remove_object 'ctrl'+'d' 移除
    end adventure debug
    combat debug
    bind combat_killcreature 'ctrl'+'d' 杀死生物
    bind combat_creaturegiveturn 'ctrl'+'f' 进度条
    end combat debug
    代码
    (1)普通作弊码
    add_skill+技能名/数字"可以给选定英雄加技能,例如在控制台中输入:
    add_skill necromancy
    这个可以加巫术
    或者在后边加数字:
    add_skill 19
    可以加寻路术。这些数字对应的技能可以用写字板打开data\data.pak\scripts\advmap-startup.lua这个文件察看
    注意这个data.pak是个压缩文件,可以用解压软件(winrar,winzip等)把它打开并把想要的文件解压出来。用这种方法所加的技能数量是可以超出原有限制,虽然不会显示出来,但是效果还在
    add_army 种族代码,是否升级
    加生物
    种族代码对应如下:
    he**en(圣堂)=0
    preserve(森林)=1
    academy(学院)=2
    dungeon(地牢)=3
    necro(不死)=4
    inferno(炼狱)=5
    例如:
    add_army 5,0
    会给英雄加升级前的7种炼狱生物各十(至于原来的兵会怎样?试过就知道了)
    add_army 4,1
    加升级后的七种不死生物各十
    add_all_spells
    使英雄学会所有魔法,不受技能限制(包括使用这些魔法)
    set_hero_luck_morale m n
    改变英雄的基本运气(m)和士气(n),例如 set_hero_luck_morale 5 3
    show_player_money n
    显示玩家n所拥有的资源,例如 show_player_money 2
    show_hero_mp
    shows detailed movement point stats for currently selected hero-exact quantity,stats for currently plotted path(how many points it'll take).
    add_exp n
    加经验,例如add_exp 5000
    add_money n
    加金币1000*n,其他所有资源加n
    (2)调用函数
    上边的都只算小儿科,下边来点真格的
    在data.pak或你所解出来的文件夹里的.lua、.xdb文件里边你通常会看到一大堆函数,游戏中的所有事件(如征兵,学技能等)都是通过这些函数实现的。开始游戏时这些文件会对游戏进行初始化。然而通过控制台你可以在游戏中调用这些函数,也就是说,只要你知道了这些函数,几乎可以人为的实现在游戏中可能实现的一切
    要在游戏中使用这些函数,只要调用控制台,在这些函数前加上@,并使用相关参数就可以了。例如:
    文件中有这么一句:
    giveexp("**abell",5000)
    会给**abell 5000经验(太明显啦!那么在控制台里,你可以输入:
    giveexp("x",y)
    会给英雄 x 增加经验值 y
    或者更简单的:
    win()
    直接取得胜利
    loose()
    失败
    下边列几个比较实用的:
    giveartefact("x",y)
    给英雄x加上物品y,y可以是物品名或者物品代码,
    teachherospell("**abell",spell_phantom)
    使**abell学会法术phantom,也可以用法术代码
    addheroskill('**abell',13)
    加技能13
    addherocreatures("agrael",creature_hell_hound,1000);给agreal加1000只hell hound
    settownbuildinglimitlevel('putor',13,1);设定城镇putor的建设等级
    opencirclefog(0,0,0,9999,player_x);给第x位玩家开图(地面)
    如果是地底的话
    opencirclefog(0,0,1,9999,player_x);setplayerresource(player_1,x,y);把玩家1的资源x设为y,x对应资源gold,wood,ore,gem,sulfer,mercury,crystal;y对应数字
    changeherostat('**abell',stat_attack,9999);使**abell的攻击变为9999
    addherowarmachine('**abell',1)
    给英雄加战争机器
    这里的部分代码我会在后边列出,当然你最好可以自己去查lua文件,我比较常用/data/script/里边的
    注意:游戏里显示的名称(如英雄名,城镇名等)往往跟在程序里使用的内部名称不一样,对于英雄名,可以用这个命令
    print(getplayerheroes(player_x))
    显示第x位玩家的英雄名。至于其他的,也可以在/data/text/里边查找,不过比较麻烦,希望有高手能解决这个问题
    没见过作弊能这么bt的。不过,我喜欢。这么强大的控制台并不一定要拿来作弊的,比如说在最后大局已定英雄毒孤求拜时,可以放几百条黑龙出来耍耍
    又或者让一队地狱犬在清掉一群骷髅后说:“mmmmm,yummy.”
    活活,yy无限啊
    当然这个也可以方便制作mod的玩家进行调试,本来就是debug用的
    6月2日更新:
    print(getobjectpos('heroname'))
    会显示英雄的坐标
    setobjectpos('heroname',x,y,0)
    瞬移(地面)
    setobjectpos('heroname',x,y,1)
    瞬移(地底)
    createmonster('peasant',creature_peasant,100,30,40,1)
    在地底坐标(30,40)处放100个农民
    附:
    技能代码
    物品代码
    法术代码(这个好像不止法术而已,而且看起来有点恐怖,如果能全部挖掘的话)
    英雄属性
    兵种及英雄代码
    技能代码
    skill type ids
    basic skills
    skill_log**tics=1
    skill_war_machines=2
    skill_learning=3
    skill_leadership=4
    skill_luck=5
    skill_offence=6
    skill_defence=7
    skill_sorcery=8
    skill_destructive_magic=9
    skill_dark_magic=10
    skill_light_magic=11
    skill_summoning_magic=12
    class skills
    skill_training=13
    skill_gating=14
    skill_necromancy=15
    skill_**enger=16
    skill_artificier=17
    skill_invocation=18
    perks
    perk_pathfinding=19
    perk_scouting=20
    perk_n**igation=21
    perk_first_aid=22
    perk_ball**ta=23
    perk_catapult=24
    perk_intelligence=25
    perk_scholar=26
    perk_eagle_eye=27
    perk_recruitment=28
    perk_estates=29
    perk_diplomacy=30
    perk_res**tance=31
    perk_lucky_strike=32
    perk_fortunate_adventurer=33
    perk_tactics=34
    perk_archery=35
    perk_frenzy=36
    perk_protection=37
    perk_evasion=38
    perk_toughness=39
    perk_mystic**m=40
    perk_w**dom=41
    perk_arcane_training=42
    perk_master_of_ice=43
    perk_master_of_fire=44
    perk_master_of_lightnings=45
    perk_master_of_curses=46
    perk_master_of_mind=47
    perk_master_of_sickness=48
    perk_master_of_blessing=49
    perk_master_of_abjuration=50
    perk_master_of_wrath=51
    perk_master_of_quakes=52
    perk_master_of_creatures=53
    perk_master_of_animation=54
    knight perks
    perk_holy_charge=55
    perk_prayer=56
    perk_expert_trainer=57
    demonlord perks
    perk_consume_corpse=58
    perk_demonic_fire=59
    perk_demonic_strike=60
    necromancer perks
    perk_ra**e_archers=61
    perk_no_rest_for_the_wicked=62
    perk_death_scream=63
    ranger perks
    perk_mult**hot=64
    perk_snipe_dead=65
    perk_imbue_arrow=66
    wizard perks
    perk_magic_bond=67
    perk_melt_artifact=68
    perk_magic_mirror=69
    warlock perks
    perk_empowered_spells=70
    perk_dark_ritual=71
    perk_elemental_v**ion=72
    feats
    knight
    knight_feat_road_home=73
    knight_feat_triple_ball**ta=74
    knight_feat_encourage=75
    knight_feat_retribution=76
    knight_feat_hold_ground=77
    knight_feat_guardian_angel=78
    knight_feat_student_award=79
    knight_feat_grail_v**ion=80
    knight_feat_caster_certificate=81
    knight_feat_ancient_smithy=82
    knight_feat_pariah=83
    knight_feat_elemental_balance=84
    knight_feat_absolute_charge=85
    demon lord
    demon_feat_quick_gating=86
    demon_feat_master_of_secrets=87
    demon_feat_triple_catapult=88
    demon_feat_gating_mastery=89
    demon_feat_critical_gating=90
    demon_feat_critical_strike=91
    demon_feat_demonic_retaliation=92
    demon_feat_exploding_corpses=93
    demon_feat_demonic_flame=94
    demon_feat_weakening_strike=95
    demon_feat_fire_protection=96
    demon_feat_fire_affinity=97
    demon_feat_absolute_gating=98
    necromancer
    necromancer_feat_death_tread=99
    necromancer_feat_last_aid=100
    necromancer_feat_lord_of_undead=101
    necromancer_feat_herald_of_death=102
    necromancer_feat_dead_luck=103
    necromancer_feat_chilling_steel=104
    necromancer_feat_chilling_bones=105
    necromancer_feat_spellproof_bones=106
    necromancer_feat_deadly_cold=107
    necromancer_feat_spirit_link=108
    necromancer_feat_twilight=109
    necromancer_feat_haunt_mine=110
    necromancer_feat_absolute_fear=111
    ranger
    ranger_feat_d**gu**e_and_reckon=112
    ranger_feat_imbue_ball**ta=113
    ranger_feat_cunning_of_the_woods=114
    ranger_feat_forest_guard_emblem=115
    ranger_feat_elven_luck=116
    ranger_feat_forest_rage=117
    ranger_feat_last_stand=118
    ranger_feat_insights=119
    ranger_feat_sun_fire=120
    ranger_feat_soil_burn=121
    ranger_feat_storm_wind=122
    ranger_feat_fog_veil=123
    ranger_feat_absolute_luck=124
    wizard
    wizard_feat_march_of_the_machines=125
    wizard_feat_remote_control=126
    wizard_feat_academy_award=127
    wizard_feat_artificial_glory=128
    wizard_feat_spoils_of_war=129
    wizard_feat_wildfire=130
    wizard_feat_seal_of_protection=131
    wizard_feat_counterspell=132
    wizard_feat_magic_cushion=133
    wizard_feat_supress_dark=134
    wizard_feat_supress_light=135
    wizard_feat_unsummon=136
    wizard_feat_absolute_wizardy=137
    warlock
    warlock_feat_teleport_assault=138
    warlock_feat_shake_ground=139
    warlock_feat_dark_revelation=140
    warlock_feat_fast_and_furious=141
    warlock_feat_lucky_spells=142
    warlock_feat_power_of_haste=143
    warlock_feat_power_of_stone=144
    warlock_feat_chaotic_spells=145
    warlock_feat_secrets_of_destruction=146
    warlock_feat_payback=147
    warlock_feat_elite_casters=148
    warlock_feat_elemental_ove**ll=149
    warlock_feat_absolute_chains=150
    物品代码:
    artifact_sword_of_ruins=1
    artifact_great_axe_of_giant_slaying=2
    artifact_wand_of_...

类似问答
精品推荐

友情链接

友链互换QQ:

谷财 备案编号:蜀ICP备11019336号-3商务合作:235-677-2621

Copyright 2009-2020 Chengdu Sanzilewan Technology Co.,Ltd all rights reserve

抵制不良游戏 拒绝盗版游戏 注意自我保护 谨防受骗上当 适度游戏益脑 沉迷游戏伤身 合理安排时间 享受健康生活