|
发表于 2003-11-22 17:51:08
|
显示全部楼层
来自 中国–广东–深圳–宝安区
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
} |
|