弒血
|
分享:
▲
▼
下面是引用 s8720419 於 2014-05-12 13:54 發表的 : 多發一篇..抱歉
|
|
x0
[2 樓]
From:臺灣中華電信股份有限公司 | Posted:2014-05-12 13:56 |
|
|
不想再想名字
|
分享:
▲
下面是引用 s8720419 於 2014-05-12 17:27 發表的 :
如果想解決問題的話.
看你要私自跟我研究問題
還是 要 貼出內容 加密的方式.//看個人 因為 現在 一堆人 會亂copy
還是 要等高手 解決 也是可以 複製程式
#include <amxmodx>
new const player_data[][] = {
"等級", "經驗"
};
new const file[] = { "addons/amxmodx/configs/test/test.ini" };
public plugin_init() {
register_plugin("Testing", "1.0", "Test");
register_clcmd("say /t", "test");
}
public test(id) {
new left[32], text[64], line, txtlen;
while(read_file(file, line++, text, charsmax(text), txtlen)) {
strtok(text, left, charsmax(left), text, charsmax(text), ' ');
for(new t = 0; t < sizeof(player_data); t++) {
client_print(id, print_chat, "|%s|%s|", left, player_data[t]);
if(equal(left, player_data[t])) {
client_print(id, print_chat, "Work");
break;
}
}
}
}
|
|
x0
[7 樓]
From:未知地址 | Posted:2014-05-12 17:56 |
|
|
|