女王万岁秘籍代码(控制台)-Long Live the Queen秘籍
女王萬歲秘籍代碼(控制臺)
DEBUG控制臺
游戲中按以下步驟開啟控制臺(不同游戲版本可能略有區別):
Preferences(偏好設置) => Video Settings(視頻設置) => Debugger Console(DEBUG控制臺)
注意事項
輸入秘籍按2次回車確認后可得到對應效果,注意是按兩次回車。
1、支持一次輸入多個代碼:
public_speaking_=100 回車 swords_=100 回車 dogs_=100 回車回車
2、開啟秘籍后仍可以獲得游戲中成就。
3、輸入代碼時注意小寫,如果代碼中出現空格請用下劃線替代,如 Royal Demeanor 替換成 royal_demeanour
技能相關
臨時改變技能:
格式為(#為0-100)
skill_name=#
例如:
archery=40
court_manners=50
改變基礎技能:
如果想改變基礎技能(不會在上課后被重置),請在技能名后面加下劃線_
skill_name_=#
如:
court_manners_=50
public_speaking_=50
技能列表:
| Royal Demeanor | composure, elegance, presence |
| Conversation | public_speaking, court_manners, flattery |
| Expression | decoration, instrument, voice_skill |
| Agility | dance, reflexes, flexibility |
| Weapons | swords, archery, polearms |
| Athletics | running, climbing, swimming |
| Animal Handling | horses, dogs, falcons |
| History | novan_history, foreign_affairs, world_history |
| Intrigue | internal_affairs, foreign_intelligence, ciphering |
| Medicine | herbs, battlefield_medicine, poison |
| Economics | accounting, trade, production |
| Military | strategy, naval_strategy, logistics |
| Faith | meditation, divination, lore |
| Lumen | sense_magic, resist_magic, wield_magic |
裝備相關
解鎖 Outfits
輸入 unlocked_outfits.add('需替換內容'),可解鎖對應的裝備(不要忘了引號)
RoyalDemeanor Conversation Expression Agility Weapons Athletics AnimalHandling History Intrigue Medicine Economics Military Faith Lumen
改變Outfit
current_outfit='需替換內容'
例如:
current_outfit='royal_demeanour'
隱藏屬性
輸入以下內容,按兩次回車,可顯示隱藏屬性數值:
ui.text("commoner_approval=%s"%commoner_approval)
ui.text("noble_approval=%s"%noble_approval)
ui.text("cruelty=%s"%cruelty)
ui.text("lassi=%s"%lassi)
其他秘籍
修改殘暴值:
輸入 cruelty=# 將#替換為數值,范圍 0-10 0為不殘暴,10為殘暴最大值。
修改金錢:
輸入 lassi=# 將 # 替換為金錢數值,例如 輸入 lassi=8888 再按兩次回車。
作弊腳本
游戲支持執行外部腳本文件,將腳本如cheat.py放入游戲根目錄,然后輸入:
execfile('cheat.py')
腳本示例:
classMyClass:
skills=['composure','elegance','presence','public_speaking','court_manners','flattery','decoration','instrument','voice_skill','dance','reflexes','flexibility','swords','archery','polearms','running','climbing','swimming','horses','dogs','falcons','novan_history','foreign_affairs','world_history','internal_affairs','foreign_intelligence','ciphering','herbs','battlefield_medicine','poison','accounting','trade','production','strategy','naval_strategy','logistics','meditation','divination','lore','sense_magic','resist_magic','wield_magic']
outfits=['RoyalDemeanor','Conversation','Expression','Agility','Weapons','Athletics','AnimalHandling','History','Intrigue','Medicine','Economics','Military','Faith','Lumen']
stats=['commoner_approval','noble_approval','cruelty','lassi']
moods=['angry','cheerful','willful','pressure','afraid','depressed','yielding','lonely']
bonuses=['royal_demeanor_bonus','conversation_bonus','expression_bonus','agility_bonus','weapons_bonus','athletics_bonus','animal_handling_bonus','history_bonus','intrigue_bonus','medicine_bonus','economics_bonus','military_bonus','faith_bonus','lumen_bonus']
output=""
minBonus=0
minSkill=0
original={}
original['update_adjusted_stats']=update_adjusted_stats
original['update_bonuses']=update_bonuses
defline(self,s):
self.output=self.output+s+'n'
ui.text(self.output)
defdisplay(self):
ui.text(self.output);
self.clear()
defclear(self):
self.output=""
defresetMoods(self):
self.clear()
self.line('resetMoods()')
foriinrange(4):
forjinrange(10):
exec('inc_'+self.moods[i]+'()')
forkinrange(5):
exec('inc_'+self.moods[i+4]+'()')
self.display()
defsetMood(self,m,n):
self.clear()
self.line('setMood()')
mood1=self.moods[m%8]
mood2=self.moods[((m+4)%8)]
self.line('resetting{0}thensetting{1}'.format(mood1,mood2))
foriinrange(10):
exec('inc_'+mood1+'()')
foriinrange(5-n):
exec('inc_'+mood2+'()')
defunlockAllOutfits(self):
foroinself.outfits:
unlocked_outfits.add(o)
defsetMinBonus(self,n):
forbinself.bonuses:
ifglobals()[b]<n:
globals()[b]=n
defsetMinSkills(self,n):
forskillinself.skills:
ifglobals()[skill]<n:
globals()[skill]=n
defshowStats(self):
self.clear()
forstatinself.stats:
self.line("{0}:{1}".format(stat,globals()[stat]))
my=MyClass()
my.line('Loadedcheatscript')
my.line('my.showStats()')
my.line('my.unlockAllOutfits()')
my.line('my.setMinSkills(n)-willberesetwhenskillschange')
my.line('my.setMinBonus(n)-willberesetwhenmoodchanges')
my.line('my.resetMoods()')
my.line('my.setMood(mood,value)-mood0-3ontop,4-7onbottom')
my.line('my.minBonus=value-automaticallyupdatesbonuses')
my.line('my.minSkill=value-automaticallyupdatesskills')
my.minBonus=50
my.minSkill=100
defupdate_adjusted_stats():
my.original['update_adjusted_stats']()
my.setMinSkills(my.minSkill)
defupdate_bonuses():
my.original['update_bonuses']()
my.setMinBonus(my.minBonus)
update_adjusted_stats()
update_bonuses()
可使用如下命令:
my.setMinBonus(50) my.resetMoods() my.setMood(6,5) my.setMinSkills(100)
總結
以上是生活随笔為你收集整理的女王万岁秘籍代码(控制台)-Long Live the Queen秘籍的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 苹果xsmax参数详细参数配置,苹果XS
- 下一篇: 女神偷秘籍-Stolen秘籍