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

Showing results 1 to 25 of 500
Search took 0.02 seconds.
Search: Posts Made By: siriusmd99
Forum: General 01-02-2021, 16:34
Replies: 2
Views: 836
Posted By siriusmd99
Re: [CS:S] Plugin that notifies admin FastDL Status

Don't worry. If file isn't found on fastdownload resource then client automaticaly downloads it from the original server. You don't have to do anything, it does automatically. Just make sure you have...
Forum: General 01-02-2021, 16:10
Replies: 0
Views: 831
Posted By siriusmd99
[CS:GO] How to disable community servers menu prompts client side

Is there a way to disable annoying menu prompts that popup often on community servers? (Votemap, votekick, vipmenu, and so on....).
I'm not talking about server-side scripting but about some client...
Forum: Scripting Help 01-22-2018, 09:41
Replies: 2
Views: 898
Posted By siriusmd99
Re: How to avoiding plugin_precache limit?

You can actually unprecache some files which are not needed (not used by map). The plugin is called something like "Unprecacher" you can Google it you will find different versions.
Forum: Scripting Help 01-10-2018, 00:34
Replies: 12
Views: 2,222
Posted By siriusmd99
Re: Get player gender by steamid, possible?

Male on a server and female on another server.
I would clap with virtual hands right now.
Yeah it's limited but in this case no. There are settings like language, sex and others that don't differ...
Forum: Scripting Help 01-09-2018, 18:15
Replies: 12
Views: 2,222
Posted By siriusmd99
Re: Get player gender by steamid, possible?

I won't be amazed. They request everything except brains.

I bet a feminist would say me "Why 'setinfo sex m' is default? Thats discriminating." :D
Forum: Scripting Help 01-09-2018, 17:13
Replies: 12
Views: 2,222
Posted By siriusmd99
Re: Get player gender by steamid, possible?

Why? Because steam doesn't have sandbox for setinfo ? :D You mean it could be possible slowhacked by other servers or what did you mean?

Btw, the "sex" key was a joke.
But anyway it could be an...
Forum: Scripting Help 12-20-2017, 05:43
Replies: 7
Views: 2,987
Posted By siriusmd99
Re: Invalid CVAR pointer

Maybe you accidentally modified g_clearShells pointer somewhere in your code and now it's not a cvar pointer anymore. Use ctrl+ f and try to find maybe you accidentally used it somewhere else.
Forum: Scripting Help 12-20-2017, 05:38
Replies: 12
Views: 2,222
Posted By siriusmd99
Re: Get player gender by steamid, possible?

setinfo "sex" "m or f"

Kappa
Forum: Scripting Help 11-26-2017, 17:56
Replies: 8
Views: 1,944
Posted By siriusmd99
Re: is it possible kill client silently ?

btw, you can block corpse.


new g_msgid_ClCorpse

plugin_init()
{
g_msgid_ClCorpse = get_user_msgid("ClCorpse")
}
Forum: Scripting Help 11-25-2017, 10:19
Replies: 14
Views: 4,320
Posted By siriusmd99
Re: loose indentation

I didn't say that you shouldn't indent properly. I said that sometimes I indent code properly but compiler doesn't understand because I used spaces instead of one tab.
But visually code looks the...
Forum: Scripting Help 11-24-2017, 03:35
Replies: 14
Views: 4,320
Posted By siriusmd99
Re: loose indentation

You are not fixing any problem by indenting code, you are just arranging code how Compiler wants, not how you want.
For instance your code is OK but compiler gives warning because he doesn't...
Forum: Scripting Help 11-23-2017, 08:09
Replies: 14
Views: 4,320
Posted By siriusmd99
Re: loose indentation

It's not error ,it's a warning that tells you that code is not indented properly, it doesn't affect the functionality of your plugin.
Anyway if you want to hide that warning then add this line to...
Forum: Scripting Help 11-21-2017, 10:32
Replies: 17
Views: 2,316
Posted By siriusmd99
Re: Weird problem.

Maybe you have a plugin like all chat or something like this that sends a message artificially and then returns handled.
Solution is to put it above all plugins in plugins.ini and see what happens.
Forum: Scripting Help 11-21-2017, 01:32
Replies: 6
Views: 1,252
Posted By siriusmd99
Re: Anti base air in base builder mod

Another way is too hard and you will never get even half of what you want. If spawns are far then increase prepare time or run only well designed maps. I had a BB server and I never heard players...
Forum: Scripting Help 11-20-2017, 08:25
Replies: 6
Views: 1,252
Posted By siriusmd99
Re: Anti base air in base builder mod

Wait a minute. There is actually solution for this. There is a cvar
bb_preptime "30"
This will set prepare time and after players build their bases they will be respawned to spawn points and they...
Forum: Scripting Help 11-20-2017, 02:02
Replies: 8
Views: 1,731
Posted By siriusmd99
Re: MENU_EXIT

You can test, put down some text when item is Menu exit
if(item==MENU_EXIT)
client_print.....
And just toggle some other menu and see what happens with the current one.
Forum: Scripting Help 11-20-2017, 01:44
Replies: 14
Views: 2,508
Posted By siriusmd99
Re: Need Private helper (Nvaulr codder)

It's off topic. Post it in right section.
Forum: Scripting Help 11-19-2017, 18:03
Replies: 26
Views: 5,340
Posted By siriusmd99
Re: random(), random_num()

If you don't need 10 and 11 then you can skip them by understanding as 12 and 13 which are 10+2 and 11 + 2
So just do this:

iNum = random_num(1,12)
if(iNum >= 10) iNum+=2;

This way 10 will be...
Forum: Scripting Help 11-19-2017, 05:10
Replies: 26
Views: 5,340
Posted By siriusmd99
Re: random(), random_num()

0,1 will do the thing for equal cantities. But you have 9 numbers and then 3 numbers. So the division is 9/3=3 (times)
Maybe you can do:

random_num(0,3) ? random_num(1, 9):random_num(12,14)
...
Forum: Scripting Help 11-17-2017, 10:33
Replies: 6
Views: 1,252
Posted By siriusmd99
Re: Anti base air in base builder mod

I think it's a bad way to teleport players who are close to the top of the map. If you add blocks properly then zombies (or whatever) will be able reach you.
If you want to punish properly for...
Forum: Scripting Help 11-16-2017, 01:01
Replies: 50
Views: 8,198
Posted By siriusmd99
Re: I will Pay MONEY for THIS.

Do you want to say that everything that is open source doesn't allow selling or you want to say that in metamod's terms is written that you can't sell plugins made based on it?
If that is written in...
Forum: Scripting Help 11-15-2017, 15:45
Replies: 50
Views: 8,198
Posted By siriusmd99
Re: I will Pay MONEY for THIS.

Lol guys. What an irony. Most of people here say it's not secure because when you sell you don't provide the source code but when you buy windows or other software does they also give you the source...
Forum: Scripting Help 11-15-2017, 06:44
Replies: 50
Views: 8,198
Posted By siriusmd99
Re: I will Pay MONEY for THIS.

To trick protection you must decompile plugin. Because you cannot guess the method of his protection. Yes its true, Mazdan uses some anti decompile protection, when you try to decompile his plugins...
Forum: Scripting Help 11-14-2017, 06:45
Replies: 19
Views: 2,718
Posted By siriusmd99
Re: change map in plugin script?

I suggest better to send command amx_map to admin with client_cmd(id, "amx_map %s", map name), because this way map is changed with delay and information about the admin who changed the map.
If you...
Forum: Scripting Help 11-13-2017, 11:31
Replies: 19
Views: 2,718
Posted By siriusmd99
Re: change map in plugin script?

You would go obviously for server_cmd function. If you don't have basic knowledge of amxx scripting you could just start a thread in "Suggestions / Requests" section.
Btw, I believe there are bunch...
Showing results 1 to 25 of 500

 
Forum Jump

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


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