搜索
楼主: 吴孟达

请问玩家得埋葬费3000元的源码应放到哪个文件?

[复制链接]
发表于 2007-9-7 14:17:30 | 显示全部楼层 来自 中国–山西–忻州

回复: 请问玩家得埋葬费3000元的源码应放到哪个文件?

这个很简单```你想要写入什么话我给你编辑。 完了给你发上来``

玩家 %s 英勇牺牲,本服奖给埋葬费3000元

后边加上Mady By 什么什么``老
回复

使用道具 举报

发表于 2007-9-7 15:25:29 | 显示全部楼层 来自 中国–广东–深圳

回复: 请问玩家得埋葬费3000元的源码应放到哪个文件?

Post by 吴孟达
tk 自杀一样加3000 没加判断 自己去改吧
#include <amxmodx>
#include <amxmisc>
#include <cstrike>
#include <fun>


public plugin_init() {
register_event("DeathMsg", "hook_death", "a...
其实这样的插件早就有人做出来了,是你自己不会搜索,不会变通
  1. #include <amxmodx>
  2. #include <cstrike>
  3. new g_round
  4. public plugin_init(){
  5. register_plugin("First Victim","1.0","ahcat")
  6. register_event("DeathMsg", "hook_death", "a")
  7. register_logevent("hook_roundstart",2,"0=World triggered","1=Round_Start")
  8. g_round = 0
  9. }
  10. public hook_death(){
  11. if (g_round!=0)
  12.   return PLUGIN_CONTINUE
  13. new Victim = read_data(2)
  14. if(Victim==Victim)
  15.   return PLUGIN_CONTINUE
  16. cs_set_user_money(Victim,cs_get_user_money (Victim)+3000)
  17. new p_name[32]
  18. get_user_name(Victim,p_name,31)
  19. set_hudmessage(255, 255, 255, -1.0, 0.5, 0, 0.1, 0.1, 0.1, 6.0, 1)
  20. show_hudmessage(0, "玩家 %s 英勇牺牲,本服奖给埋葬费3000元",p_name)
  21. g_round = 1
  22. return PLUGIN_CONTINUE
  23. }
  24. public hook_roundstart(){
  25. g_round = 0
  26. }
复制代码
原贴见http://www.dt-club.net/forum/thread/70/29662/2.htm
要学会变通.
帮你编好了,同样未测试.

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?注个册吧

×
回复

使用道具 举报

游客
回复
您需要登录后才可以回帖 登录 | 注个册吧

快速回复 返回顶部 返回列表