From 54870cf067853eff59ef33c33fae6091b67a6d79 Mon Sep 17 00:00:00 2001 From: hide_d Date: Wed, 13 Jun 2018 03:29:09 +0900 Subject: [PATCH] =?UTF-8?q?=EA=B1=B0=EB=B3=91=20=ED=99=95=EB=A5=A0=20?= =?UTF-8?q?=EC=9E=AC=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hwe/func_npc.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hwe/func_npc.php b/hwe/func_npc.php index 616585da..57448712 100644 --- a/hwe/func_npc.php +++ b/hwe/func_npc.php @@ -349,10 +349,10 @@ function processAI($no) { } break; case 1: //거병이나 견문 40% - // 초반이면서 능력이 좋은놈 위주로 1.25%확률로 거병 + // 초반이면서 능력이 좋은놈 위주로 1.5%확률로 거병 $prop = Util::randF() * (GameConst::$defaultStatNPCMax + GameConst::$chiefStatMin) / 2; $ratio = ($general['leader'] + $general['power'] + $general['intel']) / 3; - if($admin['startyear']+2 > $admin['year'] && $prop < $ratio && Util::randBool(0.0125) && $general['makelimit'] == 0) { + if($admin['startyear']+2 > $admin['year'] && $prop < $ratio && Util::randBool(0.015) && $general['makelimit'] == 0) { //거병 $command = EncodeCommand(0, 0, 0, 55); } else {