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

Showing results 1 to 25 of 29
Search took 0.01 seconds.
Search: Posts Made By: skatz_ws
Forum: General 11-20-2019, 15:46
Replies: 1
Views: 1,381
Posted By skatz_ws
Segmentation fault amxx

I already read a lot of topics about this, but I dont find what I want.

I want to know some problems that can cause this only with amxx, plugins that did that "Segmentation fault" crash and where...
Forum: Scripting Help 11-18-2019, 07:01
Replies: 5
Views: 2,281
Posted By skatz_ws
Re: Bot count as player on Find Servers

Yeah, thanks anyway https://forums.alliedmods.net/showthread.php?t=244450
Great job, approver! ;)
Forum: Scripting Help 09-12-2019, 05:26
Replies: 20
Views: 3,457
Posted By skatz_ws
Re: Enum bits for menu options

Yeah I notice but I did it myself 😂
Forum: Scripting Help 09-11-2019, 12:50
Replies: 20
Views: 3,457
Posted By skatz_ws
Re: Enum bits for menu options

Thanks! If you want you can close the thread
Forum: Scripting Help 09-10-2019, 13:11
Replies: 20
Views: 3,457
Posted By skatz_ws
Re: Enum bits for menu options

I want to create this, but with better code:

public _menu_jogo(id)
{
new skzTexto[102];

new menu = menu_create("\rwarStation.net^n\ySurfLand \wOpções de jogo", "_menus_handler" );...
Forum: Scripting Help 09-10-2019, 11:53
Replies: 2
Views: 1,229
Posted By skatz_ws
No fake walls and no water

Hi!
I saw in a surf server that they have an option to make invisible fake walls (like the one on surf_ski_2) and water, what is the function to make that?
Forum: Suggestions / Requests 09-09-2019, 14:17
Replies: 13
Views: 2,253
Posted By skatz_ws
Re: [Help/Req] Shop Plugin/Sma

I said he was right and I already explained why I did it
Forum: Suggestions / Requests 09-09-2019, 07:51
Replies: 13
Views: 2,253
Posted By skatz_ws
Re: [Help/Req] Shop Plugin/Sma

Still aproved... And I used his plugin as an example, just to make the request. Feel free to do your plugin if you want, I was just trying to help
Forum: Suggestions / Requests 09-09-2019, 06:15
Replies: 13
Views: 2,253
Posted By skatz_ws
Re: [Help/Req] Shop Plugin/Sma

I know, but it was what twistedeuphoria used in his MultiJump plugin (aproved) https://forums.alliedmods.net/showthread.php?p=88160?p=88160
Forum: Suggestions / Requests 09-08-2019, 20:03
Replies: 13
Views: 2,253
Posted By skatz_ws
Re: [Help/Req] Shop Plugin/Sma

Add this:
public plugin_precache()
{
precache_sound("yoursond.wav");
}
Put your sound into your cstrike/sounds server folder.
Than add this in your after if(ShopItems[item][_price] > money)...
Forum: Suggestions / Requests 09-08-2019, 12:56
Replies: 13
Views: 2,253
Posted By skatz_ws
Re: [Help/Req] Shop Plugin/Sma

I've made what you requested, and I added two things that could help: Only alive users can use the shop, and they can only use it one time per round.

#include <amxmodx>
#include <cstrike>...
Forum: Scripting Help 09-08-2019, 11:46
Replies: 2
Views: 1,134
Posted By skatz_ws
Re: [Help] Shop Plugin/Sma

Wrong section. This section it's to help you with your plugin, not to request one.
If you want to make a request, go to Suggestions / Requests
Forum: Scripting Help 09-08-2019, 10:57
Replies: 9
Views: 2,460
Posted By skatz_ws
Re: No freelook using orpheu

It's possible to block or make it invisible in overview too?
Forum: Scripting Help 09-08-2019, 10:55
Replies: 20
Views: 3,457
Posted By skatz_ws
Re: Enum bits for menu options

Can you explain me the difference? I want to learn
Forum: Scripting Help 09-08-2019, 10:42
Replies: 20
Views: 3,457
Posted By skatz_ws
Re: Enum bits for menu options

Right, made it!
Now I want to create a const to give "names" to that option in the menu, is this the right way?

new const MenuOptions[][Options] =
{
"Option 1",
"Option 2",
"Option 3"
};
Forum: Scripting Help 09-08-2019, 10:07
Replies: 20
Views: 3,457
Posted By skatz_ws
Enum bits for menu options

Hi!
I want to create a options menu for players to turn on/off things in my server, and I want to create a enumeration with all options, to see if it's on and off.

The best way to do it is with...
Forum: Scripting Help 09-04-2019, 16:54
Replies: 4
Views: 1,257
Posted By skatz_ws
Send message only admins

Im trying to send this message only to player whit the flag ADMIN_BAN

new players[32], num
get_players(players, num, "a");
for(new i = 0 ; i <= num; i++)
{
tempid = players[i]

if...
Forum: Scripting Help 09-03-2019, 07:01
Replies: 12
Views: 2,951
Posted By skatz_ws
Re: [AMXX] Run time error 3: stack error

Stack/heap size: 131072 bytes; max. usage is unknown, due to recursion

#pragma dynamic 32768

I have to put more?

And yes, I have a lot of variables inside the plugin
Forum: Scripting Help 09-03-2019, 06:00
Replies: 12
Views: 2,951
Posted By skatz_ws
Re: [AMXX] Run time error 3: stack error

I hook the roundstart on plugin init

register_event ( "HLTV", "_inicioronda", "a","1=0","2=0" );

Complete function:

public _inicioronda()
{
new iEntity;
Forum: Scripting Help 09-02-2019, 15:25
Replies: 12
Views: 2,951
Posted By skatz_ws
Re: [AMXX] Run time error 3: stack error

Why? The error is on that line
Forum: Scripting Help 09-02-2019, 13:02
Replies: 12
Views: 2,951
Posted By skatz_ws
[AMXX] Run time error 3: stack error

Can someone help me? I already searched for this but I didnt find a solution for my problem.

Error log:
L 09/02/2019 - 17:55:44: [AMXX] Displaying debug trace (plugin "skz_ejail.amxx")
L...
Forum: Scripting Help 08-31-2019, 14:35
Replies: 9
Views: 2,460
Posted By skatz_ws
Re: No freelook using orpheu

It works!! Thanks :)
Forum: Scripting Help 08-31-2019, 07:38
Replies: 9
Views: 2,460
Posted By skatz_ws
Re: No freelook using orpheu

public fwdAddToFullPack_Post(es_handle, e, ent, host, hostflags, player, pSet)
{
if(!player)
return FMRES_IGNORED;

if(skDia == DIA_ESCONDIDAS
&& !is_user_alive (host)...
Forum: Scripting Help 08-27-2019, 12:36
Replies: 9
Views: 2,460
Posted By skatz_ws
Re: No freelook using orpheu

Sorry, i didnt understand your sugestion in the first place but now I did. How can I make the players invisible using add to full pack forward?
Forum: Scripting Help 08-22-2019, 14:39
Replies: 9
Views: 2,460
Posted By skatz_ws
Re: No freelook using orpheu

You use get_team and check if is equal to CS_TEAM? :shock:
Showing results 1 to 25 of 29

 
Forum Jump

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


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