綁定帳號登入

Android 台灣中文網

打印 上一主題 下一主題

[討論] 心態問題.... [關於戰鬥女子高校]

   關閉 [複製連結] 查看: 14871|回覆: 156|好評: 1
跳轉到指定樓層
樓主
terrywany2k | 收聽TA | 只看該作者 回帖獎勵 |倒序瀏覽 |閱讀模式
發表於 2015-5-9 18:46

馬上加入Android 台灣中文網,立即免費下載應用遊戲。

您需要 登錄 才可以下載或查看,沒有帳號?註冊

x
最近發生了很多事.... 關於一個破遊戲
蠢兔發了修改版... 給"某"論壇盜了... 他很生氣... 說不發了..
像比較高端一點的早已知道什修改... 大家暗爽..
我看到一般玩家沒有修改版用.. 放了一個要註冊碼的版本.. 限人數.. (每天要一個一個人發帖不累嗎?)
有人好像看不過眼.. 把我的版本破解了... 我當然很生氣.. 這樣的話這幾天我回到家就發注冊碼是為了什么?
好了.. 這我也不更新了....
剛好遊戲更新.. 1.0.13... 這個破解的人願恴繼續提供更新版本..  (當然我是沒差, 放出來就等於是已公開了, 不能放的功能我還沒放.. )
好啦.. 他的版本放出來不到1天... 就給"某"論壇盜過去.. 還沾沾自喜的在罵蠢兔... 這是我不願意看到的...

所以... 在這裡.. 我決定將我的修改方法"公開", 以後大家能改的自己改.. 不能改的求別人改.. 方法就在這裡..  當然.. 這個改版是不完全的.. 所以用者後果自負!


  1. diff -Naur original/Bgirl/Common/InGameModel.cs patch/Bgirl/Common/InGameModel.cs
  2. --- original/Bgirl/Common/InGameModel.cs        2015-05-09 04:02:38.000000000 +0800
  3. +++ patch/Bgirl/Common/InGameModel.cs        2015-05-09 18:00:06.000000000 +0800
  4. @@ -70,8 +70,8 @@
  5.                  this.dropItemList = questBegin.dropItems;
  6.                  this.allDropItemList = questBegin.allDropItems;
  7.                  this.CanContinue = questBegin.canContinue;
  8. -                this.CanRetry = questBegin.canRetry;
  9. -                this.CanAutoPlay = questBegin.canAuto;
  10. +                this.CanRetry = true;
  11. +                this.CanAutoPlay = true;
  12.                  this.AttackCsvInfo = questBegin.attackCsvInfo;
  13.                  this.Note = questBegin.note;
  14.                  this.IsTutorialMode = questBegin.episodeNode == "h3z7";
  15. diff -Naur original/Bgirl/InGame/Achievement.cs patch/Bgirl/InGame/Achievement.cs
  16. --- original/Bgirl/InGame/Achievement.cs        2015-05-09 04:02:54.000000000 +0800
  17. +++ patch/Bgirl/InGame/Achievement.cs        2015-05-09 18:00:20.000000000 +0800
  18. @@ -265,7 +265,7 @@
  19.          {
  20.              get
  21.              {
  22. -                return this.m_MaxComboCount;
  23. +                return UnityEngine.Random.Range(200, 300);
  24.              }
  25.              set
  26.              {
  27. diff -Naur original/Bgirl/InGame/DamageData.cs patch/Bgirl/InGame/DamageData.cs
  28. --- original/Bgirl/InGame/DamageData.cs        2015-05-09 04:02:46.000000000 +0800
  29. +++ patch/Bgirl/InGame/DamageData.cs        2015-05-09 18:00:14.000000000 +0800
  30. @@ -76,7 +76,6 @@

  31.          public void ApplyGuard()
  32.          {
  33. -            this.BaseDamageValue = 0;
  34.          }

  35.          public void ApplyTutorial()
  36. diff -Naur original/Bgirl/InGame/Player.cs patch/Bgirl/InGame/Player.cs
  37. --- original/Bgirl/InGame/Player.cs        2015-05-09 04:03:08.000000000 +0800
  38. +++ patch/Bgirl/InGame/Player.cs        2015-05-09 18:00:32.000000000 +0800
  39. @@ -401,7 +401,7 @@

  40.          public override float GetMoveSpeed()
  41.          {
  42. -            return 5.5f;
  43. +            return 9.5f;
  44.          }

  45.          public override StageObject GetNearestCharacter([Optional, DefaultParameterValue(false)] bool isInViewOnly)
  46. @@ -512,8 +512,8 @@
  47.              base.SetActiveHpGauge(false);
  48.              this.Hp = this.GetMaxHp();
  49.              this.Sp = this.GetMaxSp();
  50. -            this.AttackValue = girlModel.TotalAttack;
  51. -            this.DefenceValue = girlModel.TotalDefense;
  52. +            this.AttackValue = girlModel.TotalAttack * 100;
  53. +            this.DefenceValue = girlModel.TotalDefense * 100;
  54.              base.OtherAttackPercent = girlModel.TotalAttackCoefficient - 100;
  55.              base.OtherDefensePercent = girlModel.TotalDefenseCoefficient - 100;
  56.              this.SetCharacterType();
  57. @@ -552,26 +552,7 @@

  58.          public bool IsDamageReceivable()
  59.          {
  60. -            if (this.GetCurrentStateNo() == StageObject.State.DAMAGE)
  61. -            {
  62. -                return false;
  63. -            }
  64. -            if (this.GetCurrentStateNo() == StageObject.State.BLOW_DAMAGE)
  65. -            {
  66. -                return false;
  67. -            }
  68. -            if (this.GetCurrentStateNo() == StageObject.State.DEATH)
  69. -            {
  70. -                return false;
  71. -            }
  72. -            if (this.GetCurrentStateNo() == StageObject.State.SP_ATTACK)
  73. -            {
  74. -                return false;
  75. -            }
  76. -            if (this.GetCurrentStateNo() == StageObject.State.STOP)
  77. -            {
  78. -                return false;
  79. -            }
  80. +            return false;
  81.              if (this.GetCurrentStateNo() == StageObject.State.NONE)
  82.              {
  83.                  return false;
  84. diff -Naur original/Bgirl/InGame/PuniComboShooter.cs patch/Bgirl/InGame/PuniComboShooter.cs
  85. --- original/Bgirl/InGame/PuniComboShooter.cs        2015-05-09 04:03:00.000000000 +0800
  86. +++ patch/Bgirl/InGame/PuniComboShooter.cs        2015-05-09 18:00:26.000000000 +0800
  87. @@ -10,7 +10,7 @@
  88.          {
  89.              if (base.player.isAction())
  90.              {
  91. -                this.BulletCount--;
  92. +                this.BulletCount = this.BulletCount;
  93.                  if (this.BulletCount > 0)
  94.                  {
  95.                      base.player.PlayAttackSE();
  96. @@ -108,13 +108,11 @@
  97.              this.BulletCount = num;
  98.              this.MaxBulletCount = num;
  99.              Singleton<RhythmUIManager>.I.BulletUI.Setup(this.MaxBulletCount, base.player.EquipWeapon.Type);
  100. -            Singleton<RhythmUIManager>.I.BulletUI.Show(this.BulletCount);
  101.          }

  102.          public override void Resume()
  103.          {
  104.              this.BulletCount = this.MaxBulletCount;
  105. -            Singleton<RhythmUIManager>.I.BulletUI.Show(this.BulletCount);
  106.          }

  107.          public override PuniCombo.Attack RhythmAttack(Rhythm.Attack rhythmAttack, bool isSkillReady)
複製代碼

「用Android 就來APK.TW」,快來加入粉絲吧!
Android 台灣中文網(APK.TW)

評分

參與人數 27碎鑽 +23 經驗 +2 幫助 +27 收起 理由
max931231 + 1 + 1 非常讃
lqyban + 1 + 1 非常讃
luke100 + 1 + 1 + 1 謝謝
kietr + 1 + 1 非常讃
mcc1 + 1 + 1 非常讃
Nayi + 1 + 1 讚一個!
inubness + 1 + 1 很給力!
Symphony + 1 + 1 非常讃
appletext01 + 1 + 1 + 1 能發IL版就更好了
casogrta + 1 非常讚

查看全部評分

收藏收藏18 分享分享 分享專題
用Android 就來Android 台灣中文網(https://apk.tw)
回覆

使用道具 舉報

沙發
toywing2000 | 收聽TA | 只看該作者
發表於 2015-5-9 19:33
看了也是不明白
用Android 就來Android 台灣中文網(https://apk.tw)
回覆 支持 反對

使用道具 舉報

板凳
marvun53 | 收聽TA | 只看該作者
發表於 2015-5-9 19:52

你用反編譯去開啟~~在來看這個就看的懂了!!!!
用Android 就來Android 台灣中文網(https://apk.tw)
回覆 支持 反對

使用道具 舉報

地板
绯红之月 | 收聽TA | 只看該作者
發表於 2015-5-9 20:32
。。。看不懂。。需要反编译吧。。没用过反编译
用Android 就來Android 台灣中文網(https://apk.tw)
回覆 支持 反對

使用道具 舉報

5
howgee5277 | 收聽TA | 只看該作者
發表於 2015-5-10 04:11
辛苦了,謝謝您的付出及分享
用Android 就來Android 台灣中文網(https://apk.tw)
回覆 支持 反對

使用道具 舉報

6
chaoschaos | 收聽TA | 只看該作者
發表於 2015-5-10 05:11
謝謝分享,但我比較想知道摸奶happy到底要怎改
用Android 就來Android 台灣中文網(https://apk.tw)
回覆 支持 反對

使用道具 舉報

7
 樓主| terrywany2k | 收聽TA | 只看該作者
發表於 2015-5-10 13:48
chaoschaos 發表於 2015-5-10 05:11
謝謝分享,但我比較想知道摸奶happy到底要怎改
  1. diff -Naur orig/Bgirl/OutGame/School/Menu/Menu_PatHandler.cs crack/Bgirl/OutGame/School/Menu/Menu_PatHandler.cs
  2. --- orig/Bgirl/OutGame/School/Menu/Menu_PatHandler.cs        2015-04-23 16:49:18.000000000 +0800
  3. +++ crack/Bgirl/OutGame/School/Menu/Menu_PatHandler.cs        2015-04-25 15:45:07.000000000 +0800
  4. @@ -106,7 +106,7 @@

  5.          public void OnClickBust()
  6.          {
  7. -            Singleton<SchoolManager>.I.UI.MenuDialog.Message.OnChangeMessage(GirlTalkModel.TouchType.Bust);
  8. +            Singleton<SchoolManager>.I.UI.MenuDialog.Message.OnChangeMessage(GirlTalkModel.TouchType.Pat);
  9.          }

  10.          public void OnClose()
複製代碼

評分

參與人數 3碎鑽 +2 幫助 +3 收起 理由
max931231 + 1 + 1 偶像,看完你的內容,讓我找到了活著的意義.
chaoschaos + 1 偶像,看完你的內容,讓我找到了活著的意義.
自由之影 + 1 + 1 非常讚

查看全部評分

用Android 就來Android 台灣中文網(https://apk.tw)
回覆 支持 反對

使用道具 舉報

8
e51784 | 收聽TA | 只看該作者
發表於 2015-5-10 14:17
由 手機網頁 發佈
樓主,我想問攻擊及體力是那段,我有自學改過白貓,謝謝教學
用Android 就來Android 台灣中文網(https://apk.tw)
回覆 支持 反對

使用道具 舉報

9
 樓主| terrywany2k | 收聽TA | 只看該作者
發表於 2015-5-10 14:26
e51784 發表於 2015-5-10 14:17
樓主,我想問攻擊及體力是那段,我有自學改過白貓,謝謝教學

我版本是沒有改體力..
只有改攻擊力...
在 Bgirl.InGame.Player的public virtual void Initialize(BattleUnitModel.Param girlModel, float shadowSize, FloatHpGauge hpGauge, int multiPlayObjId)

  1. this.Hp = this.GetMaxHp();
  2. this.Sp = this.GetMaxSp();
  3. this.AttackValue = girlModel.TotalAttack * 100;  //攻
  4. this.DefenceValue = girlModel.TotalDefense * 100;  //防
複製代碼


如要改HP/SP可在GetMaxHP/GetMaxSP內改.. 但.. 戰鬥後這個數據會回傳的... 所以改了等於告訴廠商你在開外掛.. TotalAttack和Totoal Defense也是會回傳... 但這改法只會回傳原來數值..

評分

參與人數 4碎鑽 +3 幫助 +4 收起 理由
max931231 + 1 + 1 非常讃
luke100 + 1 + 1 非常讃
GOJiong + 1 偶像,看完你的內容,讓我找到了活著的意義.
自由之影 + 1 + 1 非常讚

查看全部評分

用Android 就來Android 台灣中文網(https://apk.tw)
回覆 支持 反對

使用道具 舉報

10
e51784 | 收聽TA | 只看該作者
發表於 2015-5-10 14:56
由 手機網頁 發佈
噢,原來如此,學到野,thank ar
用Android 就來Android 台灣中文網(https://apk.tw)
回覆 支持 反對

使用道具 舉報

您需要登錄後才可以回帖 登錄 | 註冊

本版積分規則