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

Showing results 1 to 25 of 49
Search took 0.00 seconds.
Search: Posts Made By: Gior
Forum: Scripting 06-17-2016, 03:26
Replies: 12
Views: 2,786
Posted By Gior
Re: Not being able to block fall damage?

What about the slow when I land? How can I block it?
Forum: Scripting 05-06-2016, 12:47
Replies: 3
Views: 2,301
Posted By Gior
Forum: Scripting 05-06-2016, 12:06
Replies: 3
Views: 2,301
Posted By Gior
integer to a float convertion

Hi,

I want to convert an integer into a float.
I tried this (Kills is an integer:
float i = view_as<float>(Kills[id]);
PrintToChat(id, "test: %f", i);
Old Syntax:
float i = Float:Kills[id];...
Forum: Source Servers (SRCDS) 05-06-2016, 07:44
Replies: 10
Views: 3,846
Posted By Gior
Re: CSGO Dedicated Server - My friends can join, but not me

Try exit Steam, then activate SRCDS, then login to Steam and enter the game, should work.
Forum: Scripting 03-21-2016, 17:45
Replies: 6
Views: 16,765
Posted By Gior
Re: [CS:GO] Sound Location and more

Thanks you guys!!!! I needed it so much! THANKS!!
Forum: Scripting 03-21-2016, 15:19
Replies: 6
Views: 16,765
Posted By Gior
Re: [CS:GO] Sound Location and more

I've searched my whole computer for: ".wav", ".vpk", "button14.wav" and couldn't find it..
button14.wav isn't even on my computer.

You have any suggestions how to find it?
Forum: Scripting 03-20-2016, 13:42
Replies: 6
Views: 16,765
Posted By Gior
[CS:GO] Sound Location and more

Hi,
I'm not sure this is the right place to post someting like this, but:

I need the location of sounds like this (from "core.cfg", for menus):
buttons/button14.wav
buttons/combine_button7.wav...
Forum: Scripting 01-02-2016, 07:04
Replies: 7
Views: 1,340
Posted By Gior
Re: [CSGO] SetEntityMoveType isn't working

How can I set ladder to ground entity?
And btw, I thought on another way that might work:
TeleportEntity(entity, NULL_VECTOR, NULL_VECTOR, 250.0) // when the player is on wall and pressing...
Forum: Scripting 01-01-2016, 17:46
Replies: 7
Views: 1,340
Posted By Gior
Re: [CSGO] SetEntityMoveType isn't working

Not working..:
public OnClientPutInServer(id)
{
SDKHook(id, SDKHook_PostThink, PostThink);
}

public Action PostThink(id)
{
SetEntityMoveType(id, MOVETYPE_LADDER);
}
Forum: Scripting 01-01-2016, 17:03
Replies: 7
Views: 1,340
Posted By Gior
Re: [CSGO] SetEntityMoveType isn't working

I tried SDK_Touch (checked when the player touches a wall) and with a simple console command (RegConsoleCommand),
both didn't work.



yeah my mistake.
Forum: Scripting 01-01-2016, 15:56
Replies: 7
Views: 1,340
Posted By Gior
[CSGO] SetEntityMoveType isn't working

Hi,

I want to set a player Move Type to MOVETYPE_LADDER and it just isn't working.
SetEntityMoveType(id, MOVETYPE_LADDER)

If it helps, I'm trying to make players be able to walk on wall.

...
Forum: Source Servers (SRCDS) 11-28-2015, 13:29
Replies: 3
Views: 1,251
Posted By Gior
Forum: Source Servers (SRCDS) 11-20-2015, 17:20
Replies: 3
Views: 1,251
Posted By Gior
Forum: Source Servers (SRCDS) 11-14-2015, 06:38
Replies: 3
Views: 1,251
Posted By Gior
Can't connect to my server + Doesn't show up in LAN section

Hey,

I have a problem with my server.
I'm using this command line (regular):
-game csgo -console -usercon +game_type 0 +game_mode 0 +map de_dust2

And I cannot connect nor see the server in...
Forum: Scripting 10-31-2015, 11:09
Replies: 12
Views: 2,755
Posted By Gior
player_death event

Hey,

Is there a way to send the 'player_death' event to specific players? I'm talking about the notice in the top corner.
If so, how?


Thanks in Advance :D
Forum: Scripting 06-28-2015, 10:03
Replies: 7
Views: 1,745
Posted By Gior
Re: Help with Enum and SM 1.7 Variables

yeah, that's what i did.
Forum: Scripting 06-26-2015, 14:11
Replies: 7
Views: 1,745
Posted By Gior
Re: Help with Enum and SM 1.7 Variables

Oh, a bit retarded for my opinion.
Forum: Scripting 06-26-2015, 10:13
Replies: 7
Views: 1,745
Posted By Gior
Help with Enum and SM 1.7 Variables

Hi,

I tried to create an enum:
enum Blabla
{
char Name[64],
char Flags[64]
}

But, when I tried to compile I got warnings like this one:
Forum: General 05-18-2015, 13:29
Replies: 4
Views: 657
Posted By Gior
Re: [Pawn Studio] Auto Complete missing functions

Thanks :D
Seems like a nice program.
Forum: General 05-18-2015, 07:47
Replies: 4
Views: 657
Posted By Gior
Re: [Pawn Studio] Auto Complete missing functions

Oh, ok.
Can you recommend on any program?
Maybe the program you are using?
Forum: General 05-18-2015, 05:12
Replies: 4
Views: 657
Posted By Gior
[Pawn Studio] Auto Complete missing functions

Hi,
I'm using Pawn Studio and I've noticed that some functions are missing from the auto complete.
For example:
The function OpenFile isn't there, but the function WriteFileLine is there and...
Forum: Scripting 04-29-2015, 12:16
Replies: 2
Views: 703
Posted By Gior
Re: While Loop

Great explanation.
Thanks.
Forum: Scripting 04-28-2015, 15:09
Replies: 2
Views: 703
Posted By Gior
While Loop

Hey,

I have a question about while loop.
Let's say I want to read from a file with a while loop:
new Handle:File = OpenFile("file.txt", "r")
new String:buffer[128]
while(!IsEndOfFile(File))
{...
Forum: Scripting 04-21-2015, 13:49
Replies: 0
Views: 287
Posted By Gior
[CSGO] Files Handling

Hi,

Is there anyway to delete specific lines from a file?


Thanks in Advance! :)
Forum: Scripting 03-04-2015, 11:16
Replies: 3
Views: 3,113
Posted By Gior
Re: [CSGO] Entity Properties

Ok, Thank you for helping me.
Showing results 1 to 25 of 49

 
Forum Jump

All times are GMT -4. The time now is 14:39.


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