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

Showing results 1 to 25 of 500
Search took 0.01 seconds.
Search: Posts Made By: Artifact
Forum: Suggestions / Requests 12-14-2016, 01:13
Replies: 2
Views: 645
Posted By Artifact
Re: help needed

Galileo (https://forums.alliedmods.net/showthread.php?t=77391)
Forum: Suggestions / Requests 12-12-2016, 18:35
Replies: 11
Views: 1,455
Posted By Artifact
Re: [REQ] Snapshot of all players

#include <amxmodx>

public plugin_init() {

register_concmd("amx_snapshot", "SnapShot");
}

public SnapShot ( id ) {
if( !get_user_flags( id ) && ADMIN_KICK )
return PLUGIN_HANDLED;
Forum: Suggestions / Requests 12-11-2016, 02:24
Replies: 33
Views: 4,554
Posted By Artifact
Re: [REQ] Anti-NON Cheaters detector [kick normal players]

There is actually one plugin for that ;)

#include <amxmodx>

public plugin_init() {
server_cmd("hostname %s", "ChEaTeR ZoNe - Non cheaters not available!")
}
Forum: Suggestions / Requests 12-10-2016, 19:13
Replies: 7
Views: 1,027
Posted By Artifact
Re: [Req] Godmode

try this
/* Plugin generated by AMXX-Studio */

#include <amxmodx>
#include <amxmisc>
#include <fun>

#define PLUGIN "GodMode"
#define VERSION "1.0"
#define AUTHOR "alliedmods"
Forum: Suggestions / Requests 12-10-2016, 17:46
Replies: 8
Views: 1,110
Posted By Artifact
Re: Make this plugin admin only

Character ! mean difference. Example:
if(is_user_admin(id))
Code above mean that rest of the code work just if user have admin access
But
if(!is_user_admin(id))
This code will work just if user...
Forum: Suggestions / Requests 12-08-2016, 17:17
Replies: 8
Views: 1,110
Posted By Artifact
Re: Make this plugin admin only

public costumes(id)
{
if(!get_user_flags(id) && ADMIN_KICK)
return

static Letterhead[64]
static MenuName[64]

#if defined ZP_SUPPORT
if(zp_get_user_zombie(id))
Forum: Suggestions / Requests 12-01-2016, 15:29
Replies: 3
Views: 959
Posted By Artifact
Re: [Req] Editing Screen shot ban A.Ban

Commands:
amx_ban <nick, #userid, authid> <time in minutes> <reason>
amx_banip <nick, #userid, authid> <time in minutes> <reason>
amx_addban <name> <authid or ip> <time in minutes> <reason>...
Forum: Suggestions / Requests 11-18-2016, 13:32
Replies: 19
Views: 2,991
Posted By Artifact
Forum: Suggestions / Requests 11-18-2016, 13:31
Replies: 13
Views: 3,630
Posted By Artifact
Re: [HELP] Command Change by Cvar

You really need to learn english :D
I think you need something like this?
#include <amxmodx>

new cvarPrefix

public plugin_init()
{
register_plugin("My Menu", "1.0", "Me");
new clcmd[30]
Forum: Suggestions / Requests 11-18-2016, 12:55
Replies: 22
Views: 5,261
Posted By Artifact
Re: [Req] Fix error

What not working? What is debug log? We need to spend half hour of out time to find something because you can not put debug after your plugin name in plugins.ini file.
Forum: Suggestions / Requests 11-18-2016, 12:53
Replies: 19
Views: 2,991
Posted By Artifact
Re: [Req] Plugin HP

#include <amxmodx>
#include <cstrike>
#include <fun>

public plugin_init() {
register_plugin("CT get mad", "1.0", "alliedmods member")
register_event("HLTV", "event_new_round", "a", "1=0",...
Forum: Suggestions / Requests 11-16-2016, 17:27
Replies: 7
Views: 1,122
Posted By Artifact
Re: help me ineed mod Deathrun

CLICK ON IMAGE
http://i.imgur.com/VR4DV.jpg (http://www.amxmodx.org/plcompiler_vb.cgi?file_id=49361)
Forum: Scripting Help 11-16-2016, 17:26
Replies: 23
Views: 3,500
Posted By Artifact
Re: HELPPPP

Natsheh I write plugin one year ago, and I got amxx, how can I get sma of that?
I can write it again but why if I can decompile it?
Forum: Suggestions / Requests 11-16-2016, 14:24
Replies: 7
Views: 1,122
Posted By Artifact
Re: help me ineed mod Deathrun

http://bfy.tw/8nwo
Forum: Suggestions / Requests 11-16-2016, 14:23
Replies: 1
Views: 562
Posted By Artifact
Re: any suggest good! :D

Use stock zp and pay for advertisaments ;) it's best way to get good server
Forum: Suggestions / Requests 11-15-2016, 12:32
Replies: 18
Views: 2,967
Posted By Artifact
Re: [REQ] Plugin Help

You need to say what you want to amx_pika command do. What you want to execute on player... This is just example code
Forum: Suggestions / Requests 11-15-2016, 01:21
Replies: 18
Views: 2,967
Posted By Artifact
Re: [REQ] Plugin Help

public public_Function( id )
This is function that plugin use when you type in console amx_pika <name>

public menu_handler( id, menu, item )
There you can edit what plugin will do when you...
Forum: Suggestions / Requests 11-14-2016, 01:22
Replies: 18
Views: 2,967
Posted By Artifact
Re: [REQ] Plugin Help

#include <amxmisc>
#include <fun>

public plugin_init()
{
register_clcmd( "amx_pika", "public_Function" );
register_clcmd( "amx_pikamenu","menu_Function" );
}

public public_Function( id )
Forum: Scripting Help 11-12-2016, 10:39
Replies: 23
Views: 3,500
Posted By Artifact
Re: HELPPPP

Wait? You want to edit .amxx plugin?
It's not possible (hmm not here).

If you want to edit plugins you need to got source (.sma) file and some programming skills ;)
Forum: Suggestions / Requests 10-13-2016, 17:40
Replies: 5
Views: 1,191
Posted By Artifact
Re: [REQ] The use of command limit per round

/* AMX Mod X script

:: Bazooka ::

Usage:

Type amx_bazooka in the console to drop a bazooka (admin only)

Type buy_weapon in chat to open a buy menu (everyone)
Forum: Suggestions / Requests 10-12-2016, 16:20
Replies: 5
Views: 1,191
Posted By Artifact
Re: [REQ] The use of command limit per round

/* AMX Mod X script

:: Bazooka ::

Usage:

Type amx_bazooka in the console to drop a bazooka (admin only)

Type buy_weapon in chat to open a buy menu (everyone)
Forum: Suggestions / Requests 10-10-2016, 16:50
Replies: 1
Views: 597
Posted By Artifact
Re: [REQ] Hostname Request

You can try this solution /* Plugin generated by AMXX-Studio */

#include <amxmodx>
#include <amxmisc>

#define PLUGIN "New Plug-In"
#define VERSION "1.0"
#define AUTHOR "author"

new...
Forum: Suggestions / Requests 10-10-2016, 02:00
Replies: 3
Views: 681
Posted By Artifact
Re: I need TTT plugin

Anyway, if you want plugin for CS:Go you need to post request on SourceMod
Forum: Scripting Help 10-07-2016, 19:19
Replies: 10
Views: 2,602
Posted By Artifact
Re: [HELP] Change Team / Player Team

cs_set_user_team will work. You want to block jointeam menu or what? You got already by Exolent I think auto join player plugin
Forum: Scripting Help 10-07-2016, 18:37
Replies: 10
Views: 2,602
Posted By Artifact
Re: [HELP] Change Team / Player Team

http://www.amxmodx.org/api/cstrike/cs_get_user_team
http://www.amxmodx.org/api/cstrike/cs_set_user_team
Showing results 1 to 25 of 500

 
Forum Jump

All times are GMT -4. The time now is 01:20.


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