Raised This Month: $32 Target: $400
 8% 

Showing results 1 to 25 of 127
Search took 0.01 seconds.
Search: Posts Made By: Dragos
Forum: Scripting Help 08-02-2023, 12:04
Replies: 11
Views: 730
Posted By Dragos
Re: Socket flag not work?

If you say that your server gets freezer without the flag, when it loses the connexion with the telnet, then use what I mentioned above:

https://forums.alliedmods.net/showthread.php?t=262924

It...
Forum: Scripting Help 08-02-2023, 08:31
Replies: 11
Views: 730
Posted By Dragos
Re: Socket flag not work?

So what are you saying is that without the flag it works, and crashes randomly, and with the flag it does nothing?

In that case, you should try debugging the server itself if the decoding is...
Forum: Scripting Help 08-02-2023, 08:24
Replies: 11
Views: 730
Posted By Dragos
Re: Socket flag not work?

Maybe the problem is with your server configuration, not the socket. Did you used python or java for that discord bot?
Forum: Scripting Help 08-02-2023, 02:41
Replies: 6
Views: 592
Posted By Dragos
Re: Parse json encoded by PHP

Because the topic it's ended I should not post any more replies, but here it's the explanation, I guess?

For the best view:



{
"1": {
"id": null,
"nickname": null,
Forum: Scripting Help 08-01-2023, 05:29
Replies: 6
Views: 592
Posted By Dragos
Re: Parse json encoded by PHP

Good morning,

I studied more in the library and get what I wanted.

What I really needed was to parse from one json to another json and gather its information.

The json: players_tree is...
Forum: Scripting Help 07-31-2023, 14:51
Replies: 6
Views: 592
Posted By Dragos
Parse json encoded by PHP

Hey team,

I'm trying to parse the next json that it's encoded in PHP, stored in a MySQL database, and loaded into a amxmodx plugin. The problem is I tried any parse json library i could find (not...
Forum: Suggestions / Requests 05-31-2023, 11:44
Replies: 8
Views: 1,077
Posted By Dragos
Re: Smoke less transparent.

Is more visible now. Thank you :)
Forum: Suggestions / Requests 05-26-2023, 16:58
Replies: 8
Views: 1,077
Posted By Dragos
Re: Smoke less transparent.

Mark as solved

#include <amxmodx>
#include <engine>
#include <fakemeta>


public plugin_init() {
register_plugin("Smoke Thickness", "1.0", "JuSTaR");
Forum: Suggestions / Requests 05-21-2023, 05:30
Replies: 8
Views: 1,077
Posted By Dragos
Re: Smoke less transparent.

True. I was trying to search for a perfect sprite for the smoke like fastcup and other people have :))
Forum: Suggestions / Requests 05-21-2023, 03:50
Replies: 8
Views: 1,077
Posted By Dragos
Smoke less transparent.

Hello, community,

I'm searching for a plugin or a sprite to modify to make the smoke don't bee so transparent, because it makes the gameplay so bad that people can see through it at Mix 5vs5.
...
Forum: Suggestions / Requests 03-12-2023, 03:19
Replies: 2
Views: 620
Posted By Dragos
Re: team surrender plugins rehlds...

more pieces of information?
Forum: Scripting Help 12-18-2021, 08:04
Replies: 13
Views: 3,146
Posted By Dragos
Re: How to learn amxx scripting?

that's how you do? =]]]
Forum: Suggestions / Requests 09-27-2021, 16:28
Replies: 1
Views: 765
Posted By Dragos
Re: How can I hide the hud with a say

Create a bool variable, register that command. In /hidehd function check if that bool is false, set it to true, if it's true, set is false.
At
public show_hud(id) {
Add if the bool of user id is...
Forum: Scripting Help 09-23-2021, 01:45
Replies: 3
Views: 559
Posted By Dragos
Re: Menu Index Out Of Bounds

Nvm, I have just moved IT to a SQL Base, and IT work.
Forum: Scripting Help 09-21-2021, 15:47
Replies: 3
Views: 559
Posted By Dragos
Re: Menu Index Out Of Bounds

Tried, also, sometimes it works, sometimes is not. Still can't parse every array...

Anddddddddd now.
"SZ_GetSpace: overflow on RS6"
Forum: Scripting Help 09-21-2021, 10:48
Replies: 3
Views: 559
Posted By Dragos
Menu Index Out Of Bounds

Hello,

I wanted to add news stuff to my plugin, the idea was good, but I encounter a problem. When the first player from the list (players.dat) left, or join other clans, that error appears. Tried...
Forum: Scripting Help 08-06-2021, 08:31
Replies: 6
Views: 1,306
Posted By Dragos
Re: Help about client_cmd

Dude, it's register_concmd, not register_clcmd, using, clcmd won't work because, this is used for register commands, like this "say /commands", and concmd, for console commands "amx_something".

So...
Forum: Scripting Help 08-05-2021, 16:21
Replies: 1
Views: 677
Posted By Dragos
Re: Menu

Try this

Also, you should post requests here: https://forums.alliedmods.net/forumdisplay.php?f=12
Forum: Scripting Help 08-05-2021, 14:58
Replies: 20
Views: 2,906
Posted By Dragos
Re: sql save data at disconnect

Try using my method.

Not good to use, but try


public client_disconnect(id) {
if(!(is_user_bot(id)||is_user_hltv(id))) Save_MySql(id)
}

public Save_MySql(id)
Forum: Scripting Help 08-05-2021, 09:20
Replies: 10
sql
Views: 1,361
Posted By Dragos
Re: sql

Much time I thought that using set_task will lag your server, but hearing you, you changed my opinion.

Now I found out why it took so long time to change the map on some king of servers I tested...
Forum: Scripting Help 08-05-2021, 09:15
Replies: 6
Views: 1,306
Posted By Dragos
Re: Help about client_cmd

How fysiks said:



Also, If you want to create a menu on the m key, just...


register_concmd("chooseteam", "menues");
Forum: Scripting Help 08-05-2021, 09:03
Replies: 10
sql
Views: 1,361
Posted By Dragos
Re: sql

One thing that I saw as useless was this,

set_task(0.1, "MySql_Init");

You can simply call the function "MySql_Init()" without using set_task for every 0.10 seconds because that function will...
Forum: Suggestions / Requests 07-23-2021, 14:08
Replies: 3
Views: 897
Posted By Dragos
Re: Molotov Cocktail only for Team_T

get_user_team(id) == 1
Forum: Scripting Help 07-20-2021, 12:57
Replies: 7
Views: 1,066
Posted By Dragos
Re: fvault lost data problem

You don't have any specifications to load and save functions that determine who has what and how much. Like...
Save data with Name/SteamID/IP | password and life.
That's why everyone that will join...
Forum: Scripting Help 07-18-2021, 03:42
Replies: 2
Views: 707
Posted By Dragos
Re: Remove/Disable Name Changed Message.

Thank you, Now I have learned something new :)
Showing results 1 to 25 of 127

 
Forum Jump

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


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