请用用什么函数可以给所有CT和所有T加钱,谢谢。
请用用什么函数可以给所有CT和所有T加钱,谢谢。回复: 请用用什么函数可以给所有CT和所有T加钱,谢谢。
Rulzy的金钱插件就有这个功能。回复: 请用用什么函数可以给所有CT和所有T加钱,谢谢。
其中函数不是很懂,没分离出来。郁闷。回复: 请用用什么函数可以给所有CT和所有T加钱,谢谢。
你不用分离,你只要使用一个循环,对所有CT或T或所有玩家使用一次cs_set_user_money(id, cs_get_user_money(id)+money, flash)
就行了。如果使用了金钱无上限,使用对应命令,如使用了我的金钱无上限插件,只需要使用:
cs_set_user_money2(id, cs_get_user_money2(id)+money, flash)
回复: 请用用什么函数可以给所有CT和所有T加钱,谢谢。
#include <amxmodx>#include <amxmisc>
#include <csx>
#include <unlimited_money>
public plugin_init(){
register_plugin("NoBombScore", "1.0", "MistaGee | 奔の驰")
}
public bomb_explode(id){
new flash
cs_set_user_money2(id, cs_get_user_money2(id)+5000, flash);
return PLUGIN_CONTINUE;
}// Funktion :: Bomb exploded
public bomb_defused(id){
new flash
cs_set_user_money2(id, cs_get_user_money2(id)+5000, flash);
return PLUGIN_CONTINUE;
} // Funktion :: Bomb defused和机器人测试好像只加放C4的钱,不知还有什么地方不行。麻烦了。谢谢。
回复: 请用用什么函数可以给所有CT和所有T加钱,谢谢。
Post by wwww23和机器人测试好像只加放C4的钱,不知还有什么地方不行。麻烦了。谢谢。
:confused: 把钱加给BOT干什么?
bomb_explode后面不用加id吧,用循环语句给玩家加钱就可以了。
页:
[1]