新人帖
修復台板源馬 意者洽詢
交易方式 支付寶 微信都可以
【Z】java打开指定XX,转自外网教程
[*]public static void main(final String[] args) throws IOException {
[*] openWindowsExe();
[*] openExe();
[*] openFile();
[*]}
[*]
[*]// 用 Java 调用windows系统的exe文件,比如notepad,calc之类
[*]public static void openWindowsExe() {
[*] final Runtime runtime = Runtime.g ...
【Z】玩家之间交易金币后扣除率修改
源文件;constants\GameConstants.java
//金币交易扣除
//相信应该看得懂吧大家哈
public static int getTaxAmount(final int meso) {
if (meso >= 100000000) {
return (int) Math.round(0.06 * meso);
} else if (meso >= 25000000) {
return (int) Math.round(0.05 * meso);
...