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

Showing results 1 to 25 of 51
Search took 0.00 seconds.
Search: Posts Made By: 731
Forum: Suggestions / Requests 10-27-2023, 00:08
Replies: 11
Views: 1,196
Posted By 731
Re: Map number of people plug-in request

I have never used version 1.9.0 and have been using version 1.8.2
Version 1.8.2 requires installation of colorchat.inc made by ConnorMcLeod. I don't know why 1.9.0 can't compile because I haven't...
Forum: Suggestions / Requests 10-26-2023, 13:44
Replies: 11
Views: 1,196
Posted By 731
Re: Map number of people plug-in request

I have rewritten the code. If the number of players is less than 10, the server will randomly replace popular maps. If the number of players is greater than 10, the server will not replace any maps
Forum: Suggestions / Requests 10-25-2023, 08:28
Replies: 11
Views: 1,196
Posted By 731
Re: Map number of people plug-in request

Command and parameter instructions:

amx_addvotetime <hh:mm> <hh:mm> - Increases the automatic voting time range. A maximum of eight time ranges can be set. Each time range is specified by using...
Forum: Approved Plugins 10-05-2023, 07:48
Replies: 85
Views: 92,012
Posted By 731
Re: Players Drop Money v1.7 [UPDATED]

1. Parameter and command introduction
amx_maxmoney <n>
Set the maximum amount of money that can be reached, n≥16000(if less, automatically set to 16000), the default is 300000
It is best not to...
Forum: Scripting Help 03-23-2023, 00:06
Replies: 10
Views: 1,972
Posted By 731
Re: Server Side Anticheat

Commancommand and functions of plugin:


Admin order:

amx_pcheater_list
<admin menu, select punishment bureau, initiate voting, stop punishment>

The amx_pcheater <authid, nick, or # userid>...
Forum: Suggestions / Requests 01-30-2023, 11:44
Replies: 5
Views: 885
Posted By 731
Re: Make cheaters shoot themselves

Shoot yourself
You can shoot yourself. That is, it can make the attack invalid.
You can record ip or steamid to a file. (Automatically create shotself. dat)

Detailed command:

amx_...
Forum: Scripting Help 10-30-2022, 00:56
Replies: 0
Views: 318
Posted By 731
How to read waypoint map random

How to use plugins to read waypoint maps from podbot\wptdefault files
If there are files in pwf format in the directory
How to random change the map in pwf format
If the randomly selected pwf...
Forum: Scripting Help 10-04-2022, 23:33
Replies: 7
Views: 747
Posted By 731
Re: How to get map description

I'll try first. If there's anything I don't understand, I'll ask you
Forum: Scripting Help 10-04-2022, 01:16
Replies: 7
Views: 747
Posted By 731
Re: How to get map description

Can you write a code tutorial on how to get descriptions
I just want to read the map description from maps.ini in other code
Forum: Scripting Help 10-03-2022, 03:44
Replies: 7
Views: 747
Posted By 731
Re: How to get map description

mapchooser and mapsmenu I know how to read the map description
I just want to know how to get the map description in the following code

new nextmap[32]
get_cvar_string("amx_nextmap",nextmap,31)...
Forum: Scripting Help 10-01-2022, 13:28
Replies: 7
Views: 747
Posted By 731
How to get map description

How to get map descriptions in other plugins
use amx_nextmap Only maps name can be obtained
How should I read the selected map description

as_oilrig "OilRig - Assassination"...
Forum: Suggestions / Requests 09-26-2022, 23:32
Replies: 6
Views: 1,637
Posted By 731
Forum: Scripting Help 09-05-2022, 13:13
Replies: 2
Views: 608
Posted By 731
Re: Help easyinfo.amxx

try

public damage_event(id)
{
new attacker = get_user_attacker(id)
if(attacker < 1 || attacker > get_maxplayers())
{
return
}
new dmg = read_data(2)
Forum: Scripting Help 08-30-2022, 04:17
Replies: 3
Views: 658
Posted By 731
Re: Customize status kill announce

example:
Knife kill information changed to skull display

#include <amxmodx>
#define PLUGIN "Test"
#define AUTHOR "731"
#define VERSION "1.0"
public plugin_init()
{
register_plugin(PLUGIN,...
Forum: Suggestions / Requests 08-27-2022, 05:02
Replies: 11
Views: 1,161
Posted By 731
Re: Chat print

I tested the /hp command using the official stats
After I modified the code, it can be displayed after entering the command
Forum: Suggestions / Requests 08-13-2022, 22:31
Replies: 0
Views: 443
Posted By 731
jointeam command

why use jointeam 3 can't choose VIP
engclient_cmd(id, "jointeam", "3")
How to get the join VIP command

/* AMX Mod X
* Custom Team Select Menu
* Code By baby
* Credits:
* VEN(Borrowed some...
Forum: Scripting Help 07-25-2022, 03:23
Replies: 7
Views: 937
Posted By 731
Re: precache_generic

I also want to know how to download models and sprites with precache_generic
Forum: Scripting Help 07-05-2022, 03:56
Replies: 7
Views: 734
Posted By 731
Re: make fakeclient use voice

You can capture the player who is speaking
turn on voice
voice_record_open
turn off voice
voice_record_close
Forum: Suggestions / Requests 07-01-2022, 02:30
Replies: 2
Views: 437
Posted By 731
Re: [req] ghost after death

Sprites appear after death
Forum: Suggestions / Requests 05-15-2022, 03:45
Replies: 4
Views: 570
Posted By 731
Re: [Requst] Death Ball

What he said is that after killing the player, football money will be dropped. Football money distinguishes the color of the team. You can only pick up the football money dropped by the opponent.
Forum: Scripting Help 04-04-2022, 11:38
Replies: 1
Views: 550
Posted By 731
Re: Unlimited Money fix code

New Money Unlimited Plugin

1. Please put unlimited_money.amxx in the plugins folder and unlimited_money.sma in the scripting folder.
Put unlimited_money.inc in the scripting/include folder.

2....
Forum: Approved Plugins 03-02-2022, 05:21
Replies: 170
Views: 154,686
Posted By 731
Re: Played Time

I changed the /pttop15 display style
public show_top15(id)
{
new i, count;
static sort[33][2], maxPlayers;

if(!maxPlayers) maxPlayers = get_maxplayers();

for(i=1;i<=maxPlayers;i++)
{
Forum: Suggestions / Requests 02-07-2022, 08:34
Replies: 1
Views: 648
Posted By 731
Re: scrollmsg

Online Admin and VIP,death display
imessage_in_die+op.sma

#include <amxmodx>
#include <amxmisc>

#define MAX_MESSAGES 100
#define X_POS -1.0
#define Y_POS 0.12
#define...
Forum: Suggestions / Requests 06-22-2021, 04:14
Replies: 5
Views: 1,266
Posted By 731
Re: BOT Random Cut The Right Wire

this code
g_bCanDefuse[id] = g_bBot[id] ? true : false
need to be changed to false?
g_bCanDefuse[id] = false
Forum: Suggestions / Requests 06-21-2021, 03:01
Replies: 5
Views: 1,266
Posted By 731
Re: BOT Random Cut The Right Wire

thank you very much, after testing, the bot can randomly select wires

do you need to delete the code here?

new bool:g_bBot[MAX_PLAYERS+1]

public client_putinserver(id)
{
// if(...
Showing results 1 to 25 of 51

 
Forum Jump

All times are GMT -4. The time now is 09:00.


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