Tutorials
5 topics in this forum
-
-
- Founders
- 0 replies
- 25 views
[1 - INFO] The title of the topic should be "[Tutorial] Tutorial Name". [2 - INFO] Check if the tutorial has not been posted before.
-
-
-
- Founders
- 0 replies
- 210 views
[STEP - 1] Setting up Your AMXX Plugin On your server, find the scripting folder inside the AMX Mod X directory. Example: cstrike/addons/amxmodx/scripting Inside the scripting folder, create a new .sma file. Example: hud_info.sma [STEP - 2] Write the Pawn Script #include <amxmodx> #include <cstrike> #define PLUGIN "HUD Info" #define VERSION "1.0" #define AUTHOR "Your Name" // Define the position for the HUD info (X and Y coordinates on screen) #define X_HUDINFO -1.0 // X position #define Y_HUDINFO 0.86 // Y position new g_HudInfo; public plugin_init() { register_plugin(PLUGIN, VERSION, AU…
-
-
-
- Founders
- 0 replies
- 49 views
[STEP - 1] Setting up Your AMXX Plugin On your server, find the scripting folder inside the AMX Mod X directory. Example: cstrike/addons/amxmodx/scripting Inside the scripting folder, create a new .sma file. Example: menu_command.sma [STEP - 2] Write the Pawn Script #include <amxmodx> #define PLUGIN "Simple Menu Plugin" #define VERSION "1.0" #define AUTHOR "Your Name" public plugin_init() { register_plugin(PLUGIN, VERSION, AUTHOR); // Register the command register_clcmd("say /menu", "cmd_open_menu"); } // This function is called when a player types /menu in chat public cmd_open_menu(id…
-
-
-
- Founders
- 0 replies
- 47 views
[STEP - 1] Setting up Your AMXX Plugin On your server, find the scripting folder inside the AMX Mod X directory. Example: cstrike/addons/amxmodx/scripting Inside the scripting folder, create a new .sma file. Example: hello_command.sma [STEP - 2] Write the Pawn Script #include <amxmodx> // Include AMX Mod X include file for functions #define PLUGIN "Simple Command" // Plugin Name #define VERSION "1.0" // Plugin Version #define AUTHOR "Your Name" // Plugin Author // This will execute when the plugin is loaded public plugin_init() { // Register the plugin register_pl…
-
-
-
- Founders
- 0 replies
- 42 views
Hello! Today i gonna show you how to download AMX Mod X Studio 1: Open Link 2: Click: AMX Mod X Studio v1.4.3 3: Extract here AMXX_Studio_1.4.3_final.zip 4: You're done now, open AMXX_Studio
-