Raised This Month: $ Target: $400
 0% 

SZ_GetSpace: overflow without.. .


  
 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
Author Message
Cheap_Suit
Veteran Member
Join Date: May 2004
Old 02-08-2008 , 04:54   SZ_GetSpace: overflow without.. .
Reply With Quote #1

I get this error below playing with 21+ pod bots with the code below. Does anyone know what's wrong? Or is it the bots...
PHP Code:
Fatal ErrorSZ_GetSpaceoverflow without FSB_ALLOWOVERFLOW set on Server Reliable Datagram 
Code 1:
PHP Code:
#include <amxmodx>
#include <fakemeta>
 
#define PLUGIN "handle models"
#define AUTHOR "Unknown"
#define VERSION "1.0"
 
new g_playermodel[33]
new const 
g_models[9][] = { "urban""terror""leet""arctic""gsg9""gign""sas""guerilla""vip" }
 
public 
plugin_init()
{
 
register_plugin(PLUGINVERSIONAUTHOR)
 
register_forward(FM_PlayerPostThink"fwd_playerpostthink")
 
register_forward(FM_ClientUserInfoChanged"fwd_clientuserinfochanged")
}
 
public 
client_authorized(id)
 
g_playermodel[id] = random_num(08)
 
public 
fwd_clientuserinfochanged(idinfobuffer
{
 static 
buffer[32]
 
engfunc(EngFunc_InfoKeyValueinfobuffer"model"buffer31)
 static 

 
for(09i++) if(equal(bufferg_models[i]))
  return 
FMRES_SUPERCEDE
 
 
return FMRES_IGNORED 
}
 
public 
fwd_playerpostthink(id)

 static 
buffer
 buffer 
engfunc(EngFunc_GetInfoKeyBufferid)
 
engfunc(EngFunc_SetClientKeyValueidbuffer"model"g_models[g_playermodel[id]])
 
 return 
FMRES_IGNORED

Code 2:
PHP Code:
#include <amxmodx>
#include <cstrike>
 
#define PLUGIN "handle models"
#define AUTHOR "Unknown"
#define VERSION "1.0"
 
new g_playermodel[33]
new const 
g_models[9][] = { "urban""terror""leet""arctic""gsg9""gign""sas""guerilla""vip" }
 
public 
plugin_init()
{
 
register_plugin(PLUGINVERSIONAUTHOR)
 
register_event("ResetHUD""event_resethud""be")
}
 
public 
client_authorized(id)
 
g_playermodel[id] = random_num(08)
 
public 
event_resethud(id)
 
cs_set_user_model(idg_models[g_playermodel[id]]) 
__________________
HDD fried, failed to backup files. Sorry folks, just don't have free time anymore. This is goodbye.
Cheap_Suit is offline
 



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 01:27.


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