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

Showing results 1 to 25 of 500
Search took 0.02 seconds.
Search: Posts Made By: mottzi
Forum: Plugins 06-22-2016, 13:10
Replies: 50
Views: 31,410
Posted By mottzi
Re: [CS:GO] Simple Ball Plugin (Soccerjam)

Does it work after the first ball spawn crash?
Forum: Plugins 06-15-2016, 09:35
Replies: 50
Views: 31,410
Posted By mottzi
Re: [CS:GO] Simple Ball Plugin (Soccerjam)

It doesnt crash it on every first map, only the first ball ever.
Forum: Plugins 06-14-2016, 08:56
Replies: 50
Views: 31,410
Posted By mottzi
Re: [CS:GO] Simple Ball Plugin (Soccerjam)

Thats really strange. I know it's the bug is with the read/write of the first entry but I can't figure out what exactly it is. The strnge thing is that I tested it with the fixed version and it...
Forum: Plugins 06-10-2016, 15:17
Replies: 50
Views: 31,410
Posted By mottzi
Re: [CS:GO] Simple Ball Plugin (Soccerjam)

Crash fixed. Reason was corrupted default spawn config file. Update to v1.2 and it should work. I would appreciate if you can test it.



Once you spawn a ball, the location is saved in the...
Forum: Plugins 06-08-2016, 22:26
Replies: 50
Views: 31,410
Posted By mottzi
Re: [CS:GO] Simple Ball Plugin (Soccerjam)

Are you sure you updated to v1.1? I thought I fixed the crash bug in v1.0, but: it should work fine after the first crash. Can you confirm?
Forum: Plugins 06-08-2016, 15:05
Replies: 50
Views: 31,410
Posted By mottzi
Re: [CS:GO] Simple Ball Plugin (Soccerjam)

If the original one doesn't work anymore I can't help, sry.
Forum: Plugins 06-06-2016, 17:41
Replies: 50
Views: 31,410
Posted By mottzi
Re: [CS:GO] Simple Ball Plugin (Soccerjam)

change it to:



We told you 3x that you need to have the ban flag...

https://wiki.alliedmods.net/Adding_Admins_(SourceMod)
Forum: Plugins 06-03-2016, 03:30
Replies: 50
Views: 31,410
Posted By mottzi
Re: [CS:GO] Simple Ball Plugin (Soccerjam)

Does it print [SM] Ball Plugin by mottzi. instead?
Forum: Plugins 06-02-2016, 15:48
Replies: 50
Views: 31,410
Posted By mottzi
Re: [CS:GO] Simple Ball Plugin (Soccerjam)

That a nice idea. I'll add that soon.
Forum: Plugins 06-02-2016, 09:47
Replies: 50
Views: 31,410
Posted By mottzi
Re: [CS:GO] Simple Ball Plugin (Soccerjam)

2. You need to attack the ball holder, he will drop it then.
3. What do you mean. Removing the default prop_physics entities?
Forum: Plugins 06-01-2016, 15:47
Replies: 50
Views: 31,410
Posted By mottzi
Re: [CS:GO] Simple Ball Plugin (Soccerjam)

Thanks.


Fixed a small bug that could lead to the server crashing when the first ball ever was spawned.
Forum: Plugins 05-31-2016, 11:41
Replies: 50
Views: 31,410
Posted By mottzi
Re: [CS:GO] Simple Ball Plugin (Soccerjam)

Made some minor adjustments.
Forum: Plugins 05-30-2016, 18:42
Replies: 50
Views: 31,410
Posted By mottzi
Re: [CS:GO] Simple Ball Plugin (Soccerjam)

Yes, thats the main reason I made this plugin, to play soccer was the best in jailmod back in cs 1.6.
Forum: Plugins 05-30-2016, 16:50
Replies: 50
Views: 31,410
Posted By mottzi
[CS:GO] Simple Ball Plugin (Soccerjam)

Description

This plugins let's you spawn a simple ball on your servers. The ball can be kicked by pressing the use (E) button. When the ball holder is attacked, he will drop the ball.
...
Forum: Scripting 05-12-2016, 10:39
Replies: 12
Views: 2,368
Posted By mottzi
Re: setentitymodel moving

Ive encountered this problem with some player models too. Would be nice to get some insight into this problem and why it occures.
Forum: Scripting 05-06-2016, 14:13
Replies: 4
Views: 922
Posted By mottzi
Re: [HELP][CSGO]Server crashing when player tags another player with knife second cli

Have a look here
https://wiki.alliedmods.net/Csgo_quirks#Slaying_players_during_player_hurt_event
Forum: Scripting 04-23-2016, 12:06
Replies: 9
Views: 2,804
Posted By mottzi
Re: Blocking Smoke Detonate CS:GO

Thanks guys, got it working with your help.
Forum: Scripting 04-22-2016, 18:03
Replies: 9
Views: 2,804
Posted By mottzi
Blocking Smoke Detonate CS:GO

Hey guys,

Im trying to block the explosion of smokegrenades. At the moment, I hook the spawn of the entity and remove it if the velocity is zero. The problems are that (1) this only blocks the...
Forum: Scripting 04-15-2016, 08:35
Replies: 5
Views: 865
Posted By mottzi
Re: Share array between plugins

Take a look at forwards and natives. I can't imagine this having a notable speed difference.
Forum: Scripting 04-14-2016, 16:26
Replies: 16
Views: 2,425
Posted By mottzi
Re: Assigning a client index to a button

This is a good example of when tries (https://sm.alliedmods.net/new-api/adt_trie) should be used. Simple and efficient.
Forum: Snippets and Tutorials 04-10-2016, 10:04
Replies: 18
Views: 27,130
Posted By mottzi
Re: [SNIPPET] Detecting button presses (and releases)

After some research on the internet I found that I'm wrong about the variables. Somehow I thought it would be inefficient. :)
Forum: Snippets and Tutorials 04-09-2016, 17:38
Replies: 18
Views: 27,130
Posted By mottzi
Re: [SNIPPET] Detecting button presses (and releases)

True, but since this is the Snippets and Tutorials section and many newcommers take code from here I suggest that such bad habits like defining variables inside loops would be avoided. No static...
Forum: Scripting Help 04-06-2016, 06:40
Replies: 4
Views: 588
Posted By mottzi
Re: Getting the highest value from nVault

The only way I can think of is to loop trough all entries and sort them. If you want to do that, search for "loop nvault". I think Bugsy posted a snippet.

The more efficient and generally...
Forum: Snippets and Tutorials 04-05-2016, 06:01
Replies: 18
Views: 27,130
Posted By mottzi
Re: [SNIPPET] Detecting button presses (and releases)

@psychonic why are you creating the variable inside the loop?
Forum: Scripting 04-05-2016, 05:01
Replies: 32
Views: 5,433
Posted By mottzi
Re: Make a plugin run only if server IP = 1.1.1.1

Yeah as if, nice try though. Who do you think you're fooling? I dont think I've heard this excuse before.

I suggest you go to the requests forum and stop spamming this section. If you want to...
Showing results 1 to 25 of 500

 
Forum Jump

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


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