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

Server crash when i try to join


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
hip_hop_x
Senior Member
Join Date: Apr 2006
Old 07-22-2009 , 18:36   Server crash when i try to join
Reply With Quote #1

I made a new plugin called the hidden, it compiles well, but i can't figure out why the server is crashing when i try to join.

I'm not experienced as you are, i just started today learning sourcemod, any help will be greatfull.
Attached Files
File Type: sp Get Plugin or Get Source (The_hidden.sp - 382 views - 2.3 KB)
hip_hop_x is offline
Send a message via MSN to hip_hop_x Send a message via Yahoo to hip_hop_x
TESLA-X4
Senior Member
Join Date: Dec 2008
Location: $Recycle.Bin
Old 07-23-2009 , 03:19   Re: Server crash when i try to join
Reply With Quote #2

I think it's getting stuck in an infinite loop Scratch that

Might not solve your issue, but you're missing somthing on line 66.
You should use break to break out of a loop.

For example:

Code:
 
while (the usual stuff here)
{
    if (condition matches)
    {
        // Escape the loop
        break;
    }
}
In contrast, if you want to skip an iteration (a cycle in a loop), use continue instead of break.

Also, instead of MAXPLAYERS+1, use MaxClients (SourceMod 1.1.0+) or GetMaxClients() (SourceMod 1.0.4 and older) for your loops. Don't change it in your array declaration on line 12 though - that one's perfectly fine.

Another problem is that while the player is turned invisible -or close to it anyway-, his weapons (which are separate entities) are not. The effect of this is a floating gun, which exposes his position right away.

Last edited by TESLA-X4; 07-23-2009 at 03:42.
TESLA-X4 is offline
hip_hop_x
Senior Member
Join Date: Apr 2006
Old 07-23-2009 , 09:37   Re: Server crash when i try to join
Reply With Quote #3

thanks, the problem was at the loop it was infinite, i fixed and improved thanks to you.
hip_hop_x is offline
Send a message via MSN to hip_hop_x Send a message via Yahoo to hip_hop_x
Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


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


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