This site is a testing version, but all data is shared with the live forum.


Raised This Month: $ Target: $400
 0% 

Overflow error..


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
BioHazardousWaste
Senior Member
Join Date: Apr 2005
Location: Ontario, Canada =)
Old 04-30-2005 , 18:39   Overflow error..
Reply With Quote #1

Quote:
SZ_GetSpace: overflow on Smooth Criminal | Tunes
WARNING datagram overflowed
I did a search on this and I read that it was an error in amxx and that it should be fixed with the last team update... well, i can't even move w/o getting that error. Server is unplayable, anyone know what causes this and/or how to fix it?

EDIT:
This appears in console, if it helps any
Quote:
NET_GetLong: Ignoring duplicated split packet 3 of 3 ( 1193 bytes )
__________________
"What then is truth? Truths are illusions which we have forgotten are illusions - they are metaphors that have become worn out... this (truth) is the duty to lie according to a fixed convention.

-Friedrich Nietzsche
BioHazardousWaste is offline
Send a message via MSN to BioHazardousWaste
BioHazardousWaste
Senior Member
Join Date: Apr 2005
Location: Ontario, Canada =)
Old 04-30-2005 , 19:04  
Reply With Quote #2

Found the problem.. it was setting two tasks to display the same message due to a double call in a procedure. Anyways, here's teh problem:

Code:
public UpdateFocus(id) {     if(is_user_alive(id))     {         PlayerMaxFocus[id] = PlayerLevel[id] + 9//check required for admin set exp command             new Message[128] = ""         format(Message, 127, "FOCUS: %i/%i", PlayerFocus[id], PlayerMaxFocus[id])             set_hudmessage(255, 255, 255, 0.05, 0.75, 0, 0.02, 3.0, 0.01, 0.1, 2)         show_hudmessage(id, Message)         RefreshExperience(id)     }     new ident[1]     ident[0] = id     set_task(1.0, "RefreshFocus", 142+id, ident, 1)         //lose 1 focus if focusing     if (PlayerFocusing[id])     {         PlayerFocus[id] -= 3                 if(PlayerFocus[id] == 0)             ToggleFocusOff(id)                 } }     //for timed function only public RefreshFocus(ident[],TaskID) {     new id = ident[0]     UpdateFocus(id) //this little bitch right here had my server down for 2 days!!!     if((is_user_alive(id)) && (PlayerAlliance[id] == 3)) //alive exiles only     {         new Health = get_user_health(id)         if(Health < PlayerMaxHealth[id])         {             Health += 1             set_user_health(id, Health)             if(Health > PlayerMaxHealth[id])                 set_user_health(id, PlayerMaxHealth[id])         }         if(get_user_armor(id) > PlayerMaxArmor[id])             set_user_armor(id, PlayerMaxArmor[id])     }     UpdateFocus(id) }
__________________
"What then is truth? Truths are illusions which we have forgotten are illusions - they are metaphors that have become worn out... this (truth) is the duty to lie according to a fixed convention.

-Friedrich Nietzsche
BioHazardousWaste is offline
Send a message via MSN to BioHazardousWaste
xeroblood
BANNED
Join Date: Mar 2004
Location: Toronto, Canada
Old 04-30-2005 , 20:19  
Reply With Quote #3

Looks like a bad case of recursion glad it's not contagious

Glad you found your cure!!
xeroblood is offline
Send a message via MSN to xeroblood
v3x
Veteran Member
Join Date: Oct 2004
Location: US
Old 04-30-2005 , 20:41  
Reply With Quote #4

Quote:
Originally Posted by xeroblood
Looks like a bad case of recursion glad it's not contagious

Glad you found your cure!!
Looks like a bad case of emoticons .



(Edited because I'm cool )
__________________
What am I doing these days? Well, I run my own Rust server. It's heavily modded. If you'd like to join, the ip is 167.114.101.67:28116

I also created a website called Rust Tools. It will calculate and tell you the raw amounts of resources needed to craft items.
v3x is offline
BioHazardousWaste
Senior Member
Join Date: Apr 2005
Location: Ontario, Canada =)
Old 04-30-2005 , 20:42  
Reply With Quote #5

rofl.. as long as it's not catchy
__________________
"What then is truth? Truths are illusions which we have forgotten are illusions - they are metaphors that have become worn out... this (truth) is the duty to lie according to a fixed convention.

-Friedrich Nietzsche
BioHazardousWaste is offline
Send a message via MSN to BioHazardousWaste
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 13:55.


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