《黑客战队:异度神兆》一些控制台命令和游戏经验(内含刷武器、物品、npc的代码,测试有效)
更新和增添了不少内容,所有游戏脚本皆为原创并测试通过。
传说中的杀人盈野
要使用控制台命令 自然需要打开控制台,并且sv_cheats 1(这个很重要,表忘记)。方法不再赘述(如果这个不会,那么你需要的是作弊器)。
直接进入地图
敲入maps * 可以列出所有的地图,然后使用map命令调用即可。
使用impulse 106 列出准星中的物品信息
使用impulse 106 列出准星中的物品信息,可以绑在按键上使用(bind "key" "command")
生成npc
使用npc_create命令,如果你希望他能持有你需要的武器而不是默认武器,在之前要用“npc_create_equipment 【武器代码】”命令定义
例子:
npc_create npc_manduco
npc_create npc_kraak
把这个命令绑定在某个个按键上会很方便
bind "" "npc_create npc_kraak"
npc代码 列表
- npc_synicle_s(白衣女女)
- npc_guardian_s
- npc_military_s
- npc_punk_s
- npc_jian_s(基地里的巡逻兵,友好)
- npc_culter_s(一种友好的npc)
- npc_cop_s
- npc_fs_s
- npc_kraak
- npc_carno
- npc_forma
- npc_manduco
- npc_scrab(浮空机器人,敌对)
- npc_trans
- npc_turret_floor(炮台,敌对)
- npc_rats
- npc_deus_s(招财牛牛)
- npc_interceptor (小飞船 PS: 时灵时不灵,可能会跳出,有时候你甚至给它一枪后才会跳出)
所有人形生物召唤出来的时候级别都是一样的,0级、无护甲、只有基本武器、85滴血,友好npc只能用来吸引敌人火力,敌对npc可以大量刷出来刷钱。
哨炮和漂浮机器人都不是友好的,召唤出来也没用。
要想使召唤出来的npc更贴心,也不是没有办法,但是效果不太理想,堪勘能用:
在游戏cfg目录内创建一个脚本文件"bestrong.cfg":
ent_fire !self addoutput "targetname playself"
ent_fire wen_aim setrelationship "clonguepee d_li 1000"
ent_fire wen_aim setrelationship "playself d_li 1000"
ent_fire wen_aim addoutput "ArmorChoice 3"
ent_fire wen_aim addoutput "NumGrenades 5"
ent_fire wen_aim addoutput "squadname clonguepee"
ent_fire wen_aim addoutput "InvisMaxLevel 0.60"
ent_fire wen_aim addoutput "MyViewMax 120000.00"
ent_fire wen_aim addoutput "myskill 10"
ent_fire wen_aim addoutput "PSILevel 500"
ent_fire wen_aim addoutput "max_health 5000"
ent_fire wen_aim addoutput "health 5000"
ent_fire wen_aim addoutput "targetname clonguepee"
ent_fire wen_aim addoutput "additionalequipment weapon_sulfatum "
此动作脚本是对NPC进行设置,提高血量、配给手雷,并设置和你友好。
相关文章