弑血
|
分享:
▲
▼
下面是引用 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 |
|
|
|