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

Showing results 1 to 23 of 23
Search took 0.01 seconds.
Search: Posts Made By: sukodaime
Forum: Plugins 08-15-2021, 08:55
Replies: 4
Views: 2,747
Posted By sukodaime
Re: [CSGO]XOX game in csgo

you should add some kind of photos of your plugin. I mean i looked your plugin and its good the way you made xox the title etc. (i was first think that you would print xox to chat in every move which...
Forum: Scripting 07-25-2021, 15:56
Replies: 0
Views: 689
Posted By sukodaime
way to only strip zeus

i did this

new client = GetClientOfUserId(GetEventInt(event, "attacker"));
decl String:szAuth[64];
GetClientAuthString( client, szAuth, sizeof( szAuth ) );
int...
Forum: Scripting 07-20-2021, 18:27
Replies: 4
Views: 1,729
Posted By sukodaime
Re: plugin ideas?

thank you, is onclientdisconnect(int client){hslist[client]=0} enough or i have to do hookevent player connect too?
Forum: Plugins 07-20-2021, 07:01
Replies: 8
Views: 3,797
Posted By sukodaime
Re: [CSGO/?]Give Store Credit To Person Who Joins Discord[19-july-2021]

ohhh i see this is how licenses (which doesn't use cloud) work right? I always wondered how they understand if the license key is valid without internet wow thanks.

I can use this thank you.
Forum: Scripting 07-19-2021, 13:00
Replies: 6
Views: 1,004
Posted By sukodaime
Re: calling a command with menus

plugin works nice but i wanted to know if i can pass another value to the menucallback internally
i mean param1 is client right i want to make param3 another client but without a global variable
Forum: Scripting 07-19-2021, 10:25
Replies: 6
Views: 1,004
Posted By sukodaime
Re: calling a command with menus

can i pass a second userid somehow to the menu?
Forum: Scripting 07-19-2021, 10:09
Replies: 6
Views: 1,004
Posted By sukodaime
Re: calling a command with menus

ohhh i see...
thanks the client was console then that why it didn't say it to me
Forum: Scripting 07-18-2021, 15:31
Replies: 6
Views: 1,004
Posted By sukodaime
calling a command with menus

#pragma semicolon 1
#define DEBUG
#define PLUGIN_AUTHOR "Me :D"
#define PLUGIN_VERSION "1.0"
#include <sourcemod>
#include <sdktools>

int active = 0;
int doneactive = 0;
public...
Forum: Scripting 07-15-2021, 16:46
Replies: 2
Views: 821
Posted By sukodaime
what happens if we forget closehandle

lets say i did new Handle:file = OpenFile( ssFilePath, "r" );
then i forgot closehandle it and handled new file like 30-50 times what happens will my server lose performance and can i close the...
Forum: Scripting 07-03-2021, 17:37
Replies: 4
Views: 1,729
Posted By sukodaime
plugin ideas?

i want to code plugins but i dont have any ideas can you guys give me some ideas so i can improve in sourcemod coding
Forum: Scripting 06-23-2021, 20:08
Replies: 4
Views: 1,032
Posted By sukodaime
Re: can players exploit sourcemod with their name?

can they exploit it with such an easy name ";quit" or they have to do more complex names?

and how can i make a plugin that says "{playernamer} Welcome !"
if we cant directly use their name

and...
Forum: Scripting 06-23-2021, 06:02
Replies: 4
Views: 1,032
Posted By sukodaime
can players exploit sourcemod with their name?

servercommand("sm_command %s",GetClientName(client))

if they make their name something like ;quit will it work like sm_command ; then quit the console?
is it somehow possible for them to make...
Forum: Scripting 06-21-2021, 17:32
Replies: 1
Views: 1,374
Posted By sukodaime
How to use in game command to send message in discord

is it somehow possible to make a command that when you use it it will print " command used " to a discord server

example;

!test
(in discord)the test command was used
Forum: Scripting 06-19-2021, 17:50
Replies: 1
Views: 789
Posted By sukodaime
Saying "Welcome" To player who said "Hi" or "Hello"

I made this plugin
#pragma semicolon 1
#define DEBUG
#define PLUGIN_AUTHOR ""
#define PLUGIN_VERSION ""
#include <sourcemod>
#include <sdktools>
public OnPluginStart()
{...
Forum: Scripting 06-09-2021, 16:51
Replies: 1
Views: 523
Posted By sukodaime
list of all entitiy props ?

I have been trying to find player locations , i found this thing

GetEntPropString(target_player, Prop_Send, "m_szLastPlaceName", location, sizeof(location));

i have seen lots of things start...
Forum: Scripting 06-08-2021, 04:05
Replies: 21
Views: 8,225
Posted By sukodaime
Re: CS:GO plugin that drops cases as if game ends

i use https://spedit.info/ spedit for coding and compiling,i simply just press f6
Forum: Scripting 06-07-2021, 13:25
Replies: 21
Views: 8,225
Posted By sukodaime
Re: CS:GO plugin that drops cases as if game ends

it didn't work for me are we sure the problem is in dhooks? because i have this errors

https://i.ibb.co/3WRGgmb/Ads-z.png

line 23:GameData hGameData = LoadGameConfigFile("DropsSummoner.games");...
Forum: Scripting 06-07-2021, 12:33
Replies: 4
Views: 875
Posted By sukodaime
Re: How to use CheckCommandAcces

i know i always check https://sm.alliedmods.net/new-api/ before writing here but i couldn't understand "The string can be any override string, as overrides can be independent of commands" because i...
Forum: Scripting 06-07-2021, 03:58
Replies: 21
Views: 8,225
Posted By sukodaime
Re: CS:GO plugin that drops cases as if game ends

thank you for .smx i installed the latest DHooks, but i still cant compile it do you know why? by any chance
Forum: Scripting 06-07-2021, 02:52
Replies: 21
Views: 8,225
Posted By sukodaime
Re: CS:GO plugin that drops cases as if game ends

thank you for source code but when i copy the txt in to spedit's gamedata folder i still cant compile it how can i compile it? it says couldn't find type "GameData",too many error messages on line...
Forum: Scripting 06-07-2021, 02:39
Replies: 4
Views: 875
Posted By sukodaime
How to use CheckCommandAcces

bool CheckCommandAccess(int client, const char[] command, int flags, bool override_only)
i couldnt really understand what this mean

CheckCommandAccess(client,"sm_ban", ADMFLAG_RESERVATION,false)...
Forum: Scripting 05-24-2021, 18:34
Replies: 21
Views: 8,225
Posted By sukodaime
Re: CS:GO plugin that drops cases as if game ends

i think they arent fake drop because i literally sold them in steam

edit:typo (i am very bad at writing with phone)
Forum: Scripting 05-23-2021, 05:25
Replies: 21
Views: 8,225
Posted By sukodaime
CS:GO plugin that drops cases as if game ends

in csgo we can get cases when the game ends by luck. I saw in some community servers that a plugin tries to drop cases every 15 minutes or so does anyone have that plugin , or is it paid plugin.
...
Showing results 1 to 23 of 23

 
Forum Jump

All times are GMT -4. The time now is 11:47.


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