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

Showing results 1 to 25 of 44
Search took 0.00 seconds.
Search: Posts Made By: drakunovu6
Forum: Source Servers (SRCDS) 04-04-2021, 22:51
Replies: 8
Views: 2,709
Posted By drakunovu6
Re: FastDL not downloading all files.

Try using HTTP if you don't have SSL
Forum: HL1 Servers (HLDS) 04-04-2021, 22:32
Replies: 4
Views: 2,214
Posted By drakunovu6
Re: zm_vip plugin Run time error 4

In your plugins config file, you have like zm_vip.amxx debug ?
Forum: Source Servers (SRCDS) 04-04-2021, 22:30
Replies: 8
Views: 2,709
Posted By drakunovu6
Re: FastDL not downloading all files.

You need to allow sv_allowupload and sv_allowdownload to make it work.
Forum: HL1 Servers (HLDS) 03-31-2021, 22:04
Replies: 5
Views: 888
Posted By drakunovu6
Re: help

It should be that, and that message appears also when you use command kill
Forum: HL1 Servers (HLDS) 03-31-2021, 17:13
Replies: 5
Views: 888
Posted By drakunovu6
Re: help

Maybe their are using the command kill in console
Forum: Suggestions / Requests 12-25-2020, 17:02
Replies: 11
Views: 1,658
Posted By drakunovu6
Re: Server shutting down?

The Non-Steam modules are the ones that allows Non-Steam clients to join the server, they are like DProto or Reunion, for removing it: go to /addons/metamod/ and edit plugins.ini and comment with ;...
Forum: Suggestions / Requests 12-24-2020, 18:20
Replies: 11
Views: 1,658
Posted By drakunovu6
Re: Server shutting down?

First of all remove the non-steam modules, and update your server with SteamCMD.
Try if this works.
Forum: Suggestions / Requests 11-17-2020, 11:22
Replies: 21
Views: 2,379
Posted By drakunovu6
Re: help! help! help! my server getting hacked

"amx_destroy" this is SlowHacking and also is suspicious of DProto or Reunion on your server hmmmm...
Forum: Suggestions / Requests 11-17-2020, 11:18
Replies: 10
Views: 1,351
Posted By drakunovu6
Re: [Possible or not possible] Player Peek

I think this MAYBE be possible, but it requieres a model that can do that, secondly the hardcoding of changing the hitbox of the player to the peeking and debugging but I still don't know if someone...
Forum: Code Snippets/Tutorials 11-13-2020, 22:03
Replies: 32
Views: 18,780
Posted By drakunovu6
Re: [TUT] Compiling AMXX plugins with Notepad++

Well, a thing I can see of VSCode is that eats more RAM than Notepad++, but hey now I can see the functions without entering the AMXX Scripting API Reference website, and that is another point, the...
Forum: New Plugin Submissions 11-13-2020, 20:02
Replies: 520
Views: 140,051
Posted By drakunovu6
Forum: Suggestions / Requests 11-13-2020, 14:45
Replies: 3
Views: 694
Posted By drakunovu6
Re: [REQ] PodBot chat plugin

Well, PodBot Chatting works for me, check in the console if they talk, also you can't see bots dead talking so you need to use another plugin for this.
Forum: Code Snippets/Tutorials 10-25-2020, 17:03
Replies: 32
Views: 18,780
Posted By drakunovu6
Re: [TUT] Compiling AMXX plugins with Notepad++

Pretty good, I was using this before, but now i'm in VSCode as it is much better than Notepad++
Forum: Translation Request 10-07-2020, 23:01
Replies: 34
Views: 23,874
Posted By drakunovu6
Forum: Translation Request 10-04-2020, 15:19
Replies: 34
Views: 23,874
Posted By drakunovu6
Re: Clientemp. Updated 09/28/2020. New key: ALREADY_CHECKED

A bit more good translation in Spanish

[es]
HUD_CLIENTEMP_PRINT = "%s se ha conectado desde %s, la temperatura ahora mismo es de %i°"
LOG_CLIENTEMP_PRINT = ""%s" se ha conectado desde "%s", la...
Forum: Suggestions / Requests 09-16-2020, 14:25
Replies: 7
Views: 1,795
Posted By drakunovu6
Re: need Auto Change HostName in spesific maps

This:


#include <amxmodx>

public plugin_cfg()
set_cvar_string("hostname", "My surf server");

public plugin_init()
register_plugin("Changing name", "1.0", "Drakunovu");
Forum: Suggestions / Requests 09-16-2020, 14:17
Replies: 3
Views: 830
Posted By drakunovu6
Re: [REQ] 1v1 countdown before kill

Here it is:


#include <amxmodx>
#include <amxmisc>
#include <cstrike>
#include <hamsandwich>

new cvar_countdown, g_countdown, g_countdown_hud;
Forum: Suggestions / Requests 09-16-2020, 13:27
Replies: 3
Views: 1,167
Posted By drakunovu6
Re: [REQ] Anti-Knifebot?

No, I think it isn't possible because you can't detect if the player is touching MOUSE1 or MOUSE2, I mean that you can use for example +attack and it will start like using MOUSE1, same for as...
Forum: Suggestions / Requests 09-16-2020, 13:24
Replies: 15
Views: 1,634
Posted By drakunovu6
Re: Vip Chat

Another thing to mention, some plugins can hook your chat and it means that you can't use the plugin, so try changing your order of plugins, but if you want stick with the say_vip
Forum: Suggestions / Requests 09-13-2020, 23:33
Replies: 9
Views: 1,489
Posted By drakunovu6
Re: Models of HL working on CS

So I tested both codes, in the both the problem still exists, however at the moment I removed the plugin it was fixed and the player was unable to change his model, so try this: remove the code of...
Forum: Suggestions / Requests 09-13-2020, 14:35
Replies: 15
Views: 1,634
Posted By drakunovu6
Re: Vip Chat

Change this


if (players[i] != id && VSGetVipFlag(id, ACCESS_FLAG))


To this


if (players[i] != id && VSGetVipFlag(players[i], ACCESS_FLAG))
Forum: Suggestions / Requests 09-13-2020, 14:18
Replies: 9
Views: 1,489
Posted By drakunovu6
Re: Models of HL working on CS

Try this:


#include <amxmodx>
#include <amxmisc>
#include <fakemeta>

public plugin_init()
{
register_plugin("Prevent players changing models", "1.0", "Drakunovu");
Forum: Suggestions / Requests 09-13-2020, 13:54
Replies: 15
Views: 1,634
Posted By drakunovu6
Re: Vip Chat

What it's the problem? I did test it a bit in localhost with HLDS without Admin and if I used the "say_team *hi" it says "(Counter-Terrorist) Drakunovu : hi" but if I had Admin it works, I removed...
Forum: Suggestions / Requests 09-13-2020, 13:09
Replies: 11
Views: 1,778
Posted By drakunovu6
Re: Skin Admin/vip

i didn't see the code right xD, just fixing some things the format part isn't necessary to be that for every additem, I only use them to show like variables
Forum: Suggestions / Requests 09-13-2020, 12:38
Replies: 11
Views: 1,778
Posted By drakunovu6
Re: Skin Admin/vip

Try this one, I didn't test it, I just grab it from that plugin a modify it a little bit so it should work.


#include <amxmodx>
#include <amxmisc>
#include <cstrike>

public plugin_init()
{...
Showing results 1 to 25 of 44

 
Forum Jump

All times are GMT -4. The time now is 23:55.


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