搜索
楼主: Seven.p@uL

游戏中被打死后能听歌的是什么插件、怎么用?

[复制链接]
匿名  发表于 2003-11-8 14:25:07 来自 Invalid
我也要我也要!
谁给个详细的说明,谢谢!
发表于 2003-11-8 15:16:28 | 显示全部楼层 来自 中国–海南–海口

是不是这个服务器?

202.104.147.168:27015 [CN.GD.SZ] CRaZy CS 1.6
回复

使用道具 举报

发表于 2003-11-22 15:37:07 | 显示全部楼层 来自 中国–四川–南充

!!!!!!!!!!!!!!!

哥哥们这个问题到底要好久才能解决?!》
回复

使用道具 举报

发表于 2003-11-22 17:43:21 | 显示全部楼层 来自 中国–广东–佛山

说的不对

听歌很简单,只用把你的MP3绑定键位就可以了!我自己都做了二十多首歌了!
回复

使用道具 举报

发表于 2003-11-22 17:46:17 | 显示全部楼层 来自 中国–广东–深圳–宝安区
MP3 v1.0Beta - Steam only[/size:5f39017f93]
Play MP3's on your clients.
Usage:
amx_playmp3 <mp3file> - Plays a MP3 file on the client
amx_repeatmp3 <mp3file> - Repeats a MP3 file on the client
amx_stopmp3 - Stop all MP3's

File options:
[color=darkblue:5f39017f93]- Play one of the 27 buildin MP3's[/color:5f39017f93]
[color=darkblue:5f39017f93]- Offer a package with optional MP3's on your clansite[/color:5f39017f93]
(Server will not undertake action when not present)
[color=red:5f39017f93]- Precache them*[/color:5f39017f93]

This is my first plugin, based on a few others. It isn't amazing but it could add a nice ambience to a game.

- Buildin MP3's list

* [b:5f39017f93]IMPORTANT[/b:5f39017f93]: You will need to remove the three lines above "public plugin_precache()" and the "*/" under } to enable Precaching of MP3 files.
This has [b:5f39017f93]NOT[/b:5f39017f93] been tested.
[amxcode:1:5f39017f93]
/*__  __ ___ ____      _   __  _     
*|  \/  | _ \__ / __ _/ | /  \| |__
*| |\/| |  _/|_ \ \ V / || () | '_ \
*|_|  |_|_| |___/  \_/|_(_)__/|_.__/
*                                    
* MP3 v1.0Beta - Steam
* This file is provided as is (no warranties).
*
* Play MP3's on your clients.
* Usage:
* amx_playmp3 <mp3file> - Plays a MP3 file on the client
* amx_repeatmp3 <mp3file> - Repeats a MP3 file on the client
* amx_stopmp3 - Stop all MP3's
*
* The MP3 player will look for it's files in ModDir\valve\
*
* IMPORTANT: You will need to remove the three lines above "public plugin_precache()"
* and the line under under } in that block to enable Precaching of MP3 files.
* (Not tested yet)
*
* There allready a few MP3's in your HL, which will be listed in the thread also.
* (No precache required at all)
*/

#include <amxmod>
#include <amxmisc>

public admin_playmp3(id,level,cid) {
   if (!cmd_access(id,level,cid,2))
      return PLUGIN_HANDLED
   new mp3var[1024]
   read_argv(1,mp3var,1023)
   client_cmd(0,"echo ^"Playing MP3.. Type mp3 stop to stop it.^";mp3 play ^"%s^"",mp3var)
   return PLUGIN_HANDLED
}

public admin_loopmp3(id,level,cid) {
   if (!cmd_access(id,level,cid,2))
      return PLUGIN_HANDLED
   new mp3loopvar[1024]
   read_argv(1,mp3loopvar,1023)
   client_cmd(0,"echo ^"Playing MP3 with Repeat on.. Type mp3 stop to stop it.^";mp3 loop ^"%s^"",mp3loopvar)
   return PLUGIN_HANDLED
}

public admin_stopmp3(id,level,cid) {
   client_cmd(0,"echo ^"MP3 disabled..^";mp3 stop")
   return PLUGIN_HANDLED
}

/*
*  Precache - Just replace the filenames but keep in mind
*  the mp3 player only has access to ModDir/valve/
public plugin_precache()
{   
  precache_model("valve/media/Britney.mp3")
  precache_model("valve/media/Shakira.mp3")
}
*/

public plugin_init(){
   register_plugin("MP3","1.0b","DutchTiger")
   register_concmd("amx_mp3","admin_playmp3",ADMIN_LEVEL_A,"mp3 - Play a MP3 on their computer")
   register_concmd("amx_repeatmp3","admin_loopmp3",ADMIN_LEVEL_A,"mp3 - Repeat a MP3 on their computer")
   register_concmd("amx_stopmp3","admin_stopmp3",ADMIN_LEVEL_A,"Stops ALL MP3 files playing.")
   return PLUGIN_CONTINUE
回复

使用道具 举报

发表于 2003-11-22 17:47:54 | 显示全部楼层 来自 中国–广东–深圳–宝安区
我查了下AMX的论坛,不知是不是上面那个,因为我英文不是很好大家看下是不是?
回复

使用道具 举报

匿名  发表于 2003-11-23 09:25:59 来自 Invalid
不错的娱乐方法。
  我顶顶顶!!!!!
发表于 2003-11-30 17:10:11 | 显示全部楼层 来自 日本
ding
回复

使用道具 举报

发表于 2003-12-1 16:00:17 | 显示全部楼层 来自 中国–山东–济南
再顶一下
回复

使用道具 举报

发表于 2003-12-14 03:42:42 | 显示全部楼层 来自 中国–四川–南充

!!!!!!!!!!!!!!

老帖子  老问题,,,我顶!!!
回复

使用道具 举报

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

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