Raised This Month: $ Target: $400
 0% 

Showing results 1 to 25 of 40
Search took 0.01 seconds.
Search: Posts Made By: kyriuch
Forum: Scripting 03-21-2019, 17:38
Replies: 3
Views: 2,869
Posted By kyriuch
Enum structs

Hello. I wanted to ask whether enum structs are yet released or not? Comparing to https://wiki.alliedmods.net/SourcePawn_Transitional_Syntax they like are out now. I'm trying to use them but I can't...
Forum: Source Servers (SRCDS) 01-02-2015, 09:55
Replies: 5
Views: 1,494
Posted By kyriuch
Re: [CS:GO] Jumping

how? I want to jump in cs:go like I could in cs 1.6, with airaccelerate 100 with duck bhopping
Forum: Source Servers (SRCDS) 12-28-2014, 09:18
Replies: 5
Views: 1,494
Posted By kyriuch
Re: [CS:GO] Jumping

bump, is it possible?
Forum: Source Servers (SRCDS) 12-27-2014, 15:28
Replies: 5
Views: 1,494
Posted By kyriuch
[CS:GO] Jumping

Did anybody find out how to change server's cvars so you jump like in cs 1.6? I mean also with duck.
Forum: Scripting 12-26-2014, 10:56
Replies: 11
Views: 2,534
Posted By kyriuch
Re: DispatchKeyValue

you're right, I used prop_dynamic, now what keyNames I have for prop_dynamic? and another question, does anybody know how do I get the origin of the place I am looking at?
Forum: Scripting 12-26-2014, 07:06
Replies: 11
Views: 2,534
Posted By kyriuch
Re: DispatchKeyValue

Then how do I create entity in my plugin and how do I manipulate its params?
Forum: Scripting 12-26-2014, 06:21
Replies: 11
Views: 2,534
Posted By kyriuch
Re: DispatchKeyValue

I still don't know. Let's say I create my own prop_static entity, what keys does it have?
Forum: Scripting 12-25-2014, 18:21
Replies: 11
Views: 2,534
Posted By kyriuch
DispatchKeyValue

Hey guys. Where do I get all keyNames for function DispatchKeyValue? I want to know everything I can do with this function.
Forum: Scripting Help 02-28-2014, 03:13
Replies: 4
Views: 853
Posted By kyriuch
Re: Index out of bounds <hamsandwich>

bro :D bad 'ifs'

try think like this: if attacker < 1 or attacker > 32 or victim < 1 or victim > 32

or gates, not and

and: if isn't user connected (victim) or (not and) isn't user connected...
Forum: Scripting Help 02-24-2014, 01:34
Replies: 2
Views: 768
Posted By kyriuch
Re: how to disable commands chooseteam or kill on server

maybe this way?
#include <amxmodx>

public plugin_init()
{
// Add your code here...
}

public client_command(id)
{
Forum: Scripting Help 02-22-2014, 18:26
Replies: 2
Views: 722
Posted By kyriuch
Re: How to put a password on an command?

you can write your own saving system, or use sql or nvault for example, which one do you choose? and vip is set to steam id or nick?
Forum: Scripting Help 02-21-2014, 15:55
Replies: 3
Views: 649
Posted By kyriuch
Re: What Is Wrong In This Code, Help Please

this id means the id of argument, which argument do you want 1 - first 2 - second and so on :) you are welcome ^^
Forum: Suggestions / Requests 02-20-2014, 09:38
Replies: 14
Views: 2,328
Posted By kyriuch
Re: help ??

awww :D it should finally work fine:
stock get_target(const s_name[])
{
new s_player_name[32], i_players[32], i_num, i_counter = 0, id;

get_players(i_players, i_num);
for(new i =...
Forum: Suggestions / Requests 02-20-2014, 09:14
Replies: 14
Views: 2,328
Posted By kyriuch
Re: help ??

idk, maybe
if(contain(s_name, s_player_name))
?
Forum: Suggestions / Requests 02-20-2014, 08:00
Replies: 14
Views: 2,328
Posted By kyriuch
Re: help ??

@edit

try it

stock get_target(const s_name[])
{
new s_player_name[32], i_players[32], i_num, i_counter, id;

get_players(i_players, i_num);
Forum: Scripting Help 02-20-2014, 01:31
Replies: 3
Views: 649
Posted By kyriuch
Re: What Is Wrong In This Code, Help Please

try
read_argv(1, arg, 1)
instead of
read_argv(id, arg, 1)
Forum: Suggestions / Requests 02-19-2014, 17:15
Replies: 14
Views: 2,328
Posted By kyriuch
Re: help ??

command is "transfer nick amount", check it

#include <amxmodx>
#include <cstrike>

public plugin_init()
{
register_clcmd("transfer", "transfer_money");
}
Forum: Scripting Help 02-19-2014, 11:57
Replies: 3
Views: 811
Posted By kyriuch
Re: 1 instead 5

for(new i = 0; i < 5; i++)
{
Sth[id][i] = 0;
}

OR

Sth[id] = {0, 0, 0, 0, 0}

idk if it's the only ways :)
Forum: Scripting Help 02-17-2014, 11:43
Replies: 11
Views: 1,813
Posted By kyriuch
Re: Equali commands

I don't understand :)
Forum: Scripting Help 02-17-2014, 11:36
Replies: 11
Views: 1,813
Posted By kyriuch
Re: Equali commands

maybe this, idk if it's good
#include <amxmodx>

public plugin_init()
register_clcmd("say", "say_cmd");

public say_cmd()
{
new s_message[128];
Forum: Scripting Help 02-15-2014, 11:12
Replies: 11
Views: 1,429
Posted By kyriuch
Re: Players Menu help!

you're always welcome ;) still don't understand why you need it :D it's just to type 'status' in console

@edit
sorry, this is working version
Forum: Scripting Help 02-15-2014, 10:16
Replies: 11
Views: 1,429
Posted By kyriuch
Re: Players Menu help!

Let me know if doesn't work or if you don't understand, I'll add comments :)
Forum: Scripting Help 02-15-2014, 09:31
Replies: 11
Views: 1,429
Posted By kyriuch
Re: Players Menu help!

you want to click some player and then 3 options with this player? 1. name 2. sid 3. name and sid?
Forum: Scripting Help 02-14-2014, 17:57
Replies: 11
Views: 3,206
Posted By kyriuch
Re: Run time error 3: stack error

maybe you should remove task with TASKID id in switchweapon function after condition is true and commands are done?
Forum: Scripting Help 02-14-2014, 16:12
Replies: 11
Views: 1,429
Posted By kyriuch
Re: Players Menu help!

It should work. Let me know if it doesn't :)
Showing results 1 to 25 of 40

 
Forum Jump

All times are GMT -4. The time now is 07:31.


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