原版殺敵加300元的問題
#include <amxmodx>#include <amxmisc>
#include <fun>
#include <unlimited_money>
public plugin_init()
{
register_plugin("Kill Bonus", "1.0", "ToKyo")
register_event("DeathMsg","event_death","a")
}
public event_death() {
new iKiller = read_data(1)
new iVictim = read_data(2)
if((iKiller != iVictim)) {
cs_set_user_money2(iKiller,cs_get_user_money2(iKiller) + 1000)
}
return PLUGIN_CONTINUE
}
如何把那CS內置殺敵加300移除
回复: 原版殺敵加300元的問題
直接加700不就行了!!回复: 原版殺敵加300元的問題
直接加700..當然可以..但會首先加700...然後再加300....也就是當你殺了人..會顯示加300...但其實加了1000
所以想問問如何移除300元
回复: 原版殺敵加300元的問題
???,有这样的事?cs_set_user_money2是什么,cs_set_user_money不行吗回复: 原版殺敵加300元的問題
Post by nopain???,有这样的事?cs_set_user_money2是什么,cs_set_user_money不行吗
版大的無限金錢.,...
回复: 原版殺敵加300元的問題
message_begin(MSG_ONE, get_user_msgid("Money"), _, iKiller)write_long(cs_get_user_money2(iKiller) + 1000)
write_byte(1)
message_end()
加在给钱那句后面试试,效果如何就不能保证了
回复: 原版殺敵加300元的問題
Post by jim_yangmessage_begin(MSG_ONE, get_user_msgid("Money"), _, iKiller)
write_long(cs_get_user_money2(iKiller) + 1000)
write_byte(1)
message_end()
加在给钱那句后面试试,效果如何就不能保证了
這個情況下能不能使用remove_quotes?
页:
[1]