AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Scripting Help (https://forums.alliedmods.net/forumdisplay.php?f=11)
-   -   Combining Plugins? (https://forums.alliedmods.net/showthread.php?t=13862)

tarin 05-31-2005 18:37

Combining Plugins?
 
how do i combine plugins into 1? eg adminmodx.amxx

i have the sma files.....wat do i do with them?

johnjg75 05-31-2005 19:11

it depends what they are... if they're all commands, then you just put all your registers under:
Code:
public plugin_init() {  register_clcmd("first_command","function1")  register_clcmd("second_command","function2") } //ect... public function1() {  //function1 } public function2() {  //function2 }


All times are GMT -4. The time now is 16:46.

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