Game


You are not connected. Please login or register

TUT TỒ Chỉnh xu PVP

Go down  Message [Page 1 of 1]

1TUT TỒ Chỉnh xu PVP Empty TUT TỒ Chỉnh xu PVP Fri Feb 07, 2014 5:06 pm

Fenix

Fenix
Game Master
Game Master
Như trên cái này trong 3.0 mình lấy ra thôi TUT TỒ Chỉnh xu PVP 4

đầu tiên vào Game.Logic/PVPGame.cs 
tìm đoạn

private static readonly new ILog log = LogManager.GetLogger(MethodBase.GetCurrentMethod() .DeclaringType);

khúc gần đầu ấy rồi thêm sau nó:

private static readonly int Xu_Rate = Int32.Parse(ConfigurationSettings.AppSettings["Xu_Rate"]);
private static readonly int Gold_Rate = Int32.Parse(ConfigurationSettings.AppSettings["Gold_Rate"]);
private static readonly int GP_Rate = Int32.Parse(ConfigurationSettings.AppSettings["GP_Rate"]);
private static readonly int Gift_Rate = Int32.Parse(ConfigurationSettings.AppSettings["Gift_Rate"]);

ok tiếp theo tìm

p.GainGP = p.PlayerDetail.AddGP(gp);

thay bằng

if (RoomType != eRoomType.Freedom)
{
p.PlayerDetail.AddMoney((int)Math.Round((double)Xu _Rate * gp));
p.PlayerDetail.AddGold((int)Math.Round((double)Gol d_Rate * gp));
p.PlayerDetail.AddGiftToken((int)Math.Round((doubl e)Gift_Rate * gp));
}
p.GainGP = p.PlayerDetail.AddGP((int)GP_Rate * gp);

var msg = LanguageMgr.GetTranslation("PVPGame.SendGameOVer.M sg1", (int)Math.Round((double)Xu_Rate * gp), (int)Math.Round((double)Xu_Rate * gp));
p.PlayerDetail.SendMessage(msg);

ok save lại rồi dùng visual build ra nhé TUT TỒ Chỉnh xu PVP 4



tùy chỉnh lương xu vào Fighting.Service.exe.config và Road.Service.exe.config

tìm dòng

<add key="GP_Rate" value="1"/>
<add key="Xu_Rate" value="5"/>
<add key="Gold_Rate" value="0"/>
<add key="Gift_Rate" value="0"/>

làm được thanks phátTUT TỒ Chỉnh xu PVP 1TUT TỒ Chỉnh xu PVP 1TUT TỒ Chỉnh xu PVP 1TUT TỒ Chỉnh xu PVP 54TUT TỒ Chỉnh xu PVP 54

http://www.devgame.ga

Back to top  Message [Page 1 of 1]

Permissions in this forum:
You cannot reply to topics in this forum