Raised This Month: $51 Target: $400
 12% 

AMX STUDIO!!!!!!!


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
eFrigid
Senior Member
Join Date: Aug 2005
Location: 3o3
Old 08-26-2005 , 20:36   AMX STUDIO!!!!!!!
Reply With Quote #1

OMG i love it so much i cant even code and i love it

thanks everybody i love you guys!!!!
__________________
lol
eFrigid is offline
Send a message via AIM to eFrigid Send a message via MSN to eFrigid Send a message via Skype™ to eFrigid
Sp4rt4n
Senior Member
Join Date: Dec 2004
Old 08-26-2005 , 20:44  
Reply With Quote #2

lol, i like it very much too
Sp4rt4n is offline
Send a message via MSN to Sp4rt4n
eFrigid
Senior Member
Join Date: Aug 2005
Location: 3o3
Old 08-26-2005 , 21:07  
Reply With Quote #3

Does any one wanna test this to see if it works?

Code:
/* Plugin generated by AMXX-Studio */ #include <amxmodx> #include <amxmisc> #define PLUGIN "MP3 EAZY-E" #define VERSION "1.0" #define AUTHOR "bizzybone" public plugin_init() {     register_plugin(MP3 EAZY-E, 1.0, bizzybone)     public  plugin_precache ( ) {    precache_sound("misc/bizzybone.mp3")   precache_sound("misc/eazy-e.mp3")   public plugin_init(){   register_concmd("amx_playmp3","admin_playmp3",ADMIN_LEVEL_A   public admin_playmp3(id,level,cid) {    if (!cmd_access(id,level,cid,2))
__________________
lol
eFrigid is offline
Send a message via AIM to eFrigid Send a message via MSN to eFrigid Send a message via Skype™ to eFrigid
Hawk552
AMX Mod X Moderator
Join Date: Aug 2005
Old 08-26-2005 , 21:17  
Reply With Quote #4

Wow, you must really not know how to code.

Code:
#include <amxmodx> #include <amxmisc> #define PLUGIN "MP3 EAZY-E" #define VERSION "1.0" #define AUTHOR "bizzybone" public plugin_init() {     register_plugin("MP3 EAZY-E", "1.0", "bizzybone")     register_concmd("amx_bizzybone","admin_bizzybone",ADMIN_LEVEL_A," - plays bizzybone theme")     register_concmd("amx_eazye","admin_eazye",ADMIN_LEVEL_A," - plays bizzybone theme") }     public plugin_precache() {      precache_sound("misc/bizzybone.mp3")     precache_sound("misc/eazy-e.mp3") }   public admin_bizzybone(id,level,cid) {     if (!cmd_access(id,level,cid,1))     {         return PLUGIN_HANDLED     }     client_cmd(0,"mp3 play sounds/misc/bizzybone.mp3")         return PLUGIN_HANDLED } public admin_eazye(id,level,cid) {     if (!cmd_access(id,level,cid,1))     {         return PLUGIN_HANDLED     }     client_cmd(0,"mp3 play sounds/misc/eazy-e.mp3")     return PLUGIN_HANDLED }
__________________
Hawk552 is offline
Send a message via AIM to Hawk552
DataMatrix
Senior Member
Join Date: Aug 2005
Location: UK, Liverpool
Old 08-26-2005 , 21:52  
Reply With Quote #5

Or to save space ;):
Code:
#include <amxmodx> #include <amxmisc> #define PLUGIN "MP3 EAZY-E" #define VERSION "1.0" #define AUTHOR "bizzybone" public plugin_init() {     register_plugin(PLUGIN,VERSION,AUTHOR)     register_concmd("amx_playmp3","cmdPlaymp3",ADMIN_LEVEL_A,"<mp3>") } public plugin_precache() {     precache_sound("misc/bizzybone.mp3")     precache_sound("misc/eazy-e.mp3") } public cmdPlaymp3(id,level,cid) {     if (!cmd_access(id,level,cid,1)) {         return PLUGIN_HANDLED     }     new mp3[32]     read_argv(1,mp3,31)         client_cmd(0,"mp3 play sounds/misc/%s.mp3",mp3)     return PLUGIN_HANDLED }
DataMatrix is offline
Send a message via MSN to DataMatrix
eFrigid
Senior Member
Join Date: Aug 2005
Location: 3o3
Old 08-26-2005 , 23:40  
Reply With Quote #6

Thanks Hawk552 and Data matrix

@hawk ya i no i cant code

well thanks a bunch
__________________
lol
eFrigid is offline
Send a message via AIM to eFrigid Send a message via MSN to eFrigid Send a message via Skype™ to eFrigid
Hawk552
AMX Mod X Moderator
Join Date: Aug 2005
Old 08-27-2005 , 00:07  
Reply With Quote #7

Quote:
Originally Posted by DataMatrix
Or to save space ;):
Code:
#include <amxmodx> #include <amxmisc> #define PLUGIN "MP3 EAZY-E" #define VERSION "1.0" #define AUTHOR "bizzybone" public plugin_init() {     register_plugin(PLUGIN,VERSION,AUTHOR)     register_concmd("amx_playmp3","cmdPlaymp3",ADMIN_LEVEL_A,"<mp3>") } public plugin_precache() {     precache_sound("misc/bizzybone.mp3")     precache_sound("misc/eazy-e.mp3") } public cmdPlaymp3(id,level,cid) {     if (!cmd_access(id,level,cid,1)) {         return PLUGIN_HANDLED     }     new mp3[32]     read_argv(1,mp3,31)         client_cmd(0,"mp3 play sounds/misc/%s.mp3",mp3)     return PLUGIN_HANDLED }
That wouldn't work, change cmd_access to 2.
__________________
Hawk552 is offline
Send a message via AIM to Hawk552
eFrigid
Senior Member
Join Date: Aug 2005
Location: 3o3
Old 08-27-2005 , 00:40  
Reply With Quote #8

Hawk552 its not working it compiled but its not working
__________________
lol
eFrigid is offline
Send a message via AIM to eFrigid Send a message via MSN to eFrigid Send a message via Skype™ to eFrigid
Pain
Senior Member
Join Date: Aug 2004
Old 08-27-2005 , 05:12  
Reply With Quote #9

not to be annoying, but can you explain what amxx studio does? I searched and couldn't figure out.
Pain is offline
v3x
Veteran Member
Join Date: Oct 2004
Location: US
Old 08-27-2005 , 05:37  
Reply With Quote #10

It's an editor for Small ( Pawn ). Check out AMXX-Edit in the Scripting Help forum.
__________________
What am I doing these days? Well, I run my own Rust server. It's heavily modded. If you'd like to join, the ip is 167.114.101.67:28116

I also created a website called Rust Tools. It will calculate and tell you the raw amounts of resources needed to craft items.
v3x is offline
Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 07:59.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode