Raised This Month: $ Target: $400
 0% 

Error while playing on my server


Post New Thread Closed Thread   
 
Thread Tools Display Modes
Author Message
Kennarn
Junior Member
Join Date: Sep 2009
Old 07-02-2011 , 20:59   Error while playing on my server
#1

When i play on my dedicated server (runned from my computer) i get an error after like 5-10 minutes like this"




Anyone know a possible solution to that? Nobody wanna play in my server when it shuts down all the time.

Thanks.
Kennarn is offline
Jelle
[b]MOAR CANDY[/b]
Join Date: Aug 2009
Location: Denmark
Old 07-03-2011 , 18:34   Re: Error while playing on my server
#2

Disable your plugins one-by-one to find the plugin causing the crash.
__________________
No idea what to write here...
Jelle is offline
Send a message via MSN to Jelle
Kennarn
Junior Member
Join Date: Sep 2009
Old 07-03-2011 , 18:40   Re: Error while playing on my server
#3

That's going to take forever :p

Ill post my herolist, see if you can find any plugin that is "bad" (which you know of):

Code:
//Add Heroes Here
sh_batman.amxx
sh_blackpanther.amxx
sh_bomberman.amxx
sh_cyclops.amxx
sh_daredevil.amxx
sh_dracula.amxx
sh_flash.amxx
sh_grandmaster.amxx
sh_hobgoblin.amxx
sh_invisman.amxx
sh_ironman.amxx
sh_morpheus.amxx
sh_mystique.amxx
sh_punisher.amxx
sh_shadowcat.amxx
sh_spiderman.amxx
sh_superman.amxx
sh_xavier.amxx
sh_monitor.amxx
sh_merchant.amxx
sh_wolverine.amxx
sh_darthmaul.amxx
sh_pirate.amxx // made it myself with the new ways
sh_scream.amxx //renamed ghostface and changed model
sh_silverelite.amxx // Self made.
sh_ubergunner2.amxx  //Made it myself because i wanted the sh_set_hero_dmgmult
sh_ctrooper2.amxx   //Same as ubergunner2
sh_blackops.amxx // Self made.
sh_lightarmor.amxx
sh_dassassin.amxx
sh_dirty.amxx 
sh_gambit.amxx
sh_beast.amxx
sh_blink.amxx
sh_batgirl.amxx
sh_agentzero.amxx
sh_redblood.amxx
sh_wonderwoman.amxx
sh_phoenix.amxx
sh_squall.amxx
sh_colalover.amxx
sh_gogeta.amxx
sh_frieza.amxx
Kennarn is offline
G-Dog
Senior Member
Join Date: Dec 2005
Location: Thunderstorm Central
Old 07-03-2011 , 18:49   Re: Error while playing on my server
#4

that won't exactly tell us much, I would suggest disabling heroes in groups of 5's and once you find a group that the issue seems to have disappeared for then narrow down to which of the 5. Otherwise most we could assume is the 6 you commented as either making or editing.
__________________
If at first you don't succeed, then skydiving isn't for you.
G-Dog is offline
Send a message via AIM to G-Dog
Kennarn
Junior Member
Join Date: Sep 2009
Old 07-03-2011 , 21:36   Re: Error while playing on my server
#5

I think ubergunner is causing the shutdown. Please look into the scripting and tell me what is wrong

PHP Code:
#include<superheromod>  

new gHeroID
new const gHeroName[] = "UberGunner" 
new bool:gHasUberGunnerPower[SH_MAXSLOTS+1]
new const 
gUberGunnerPlayer[] = "models/player/UberGunner/UberGunner.mdl"
new const gUberGunnerWeapon[] = "models/shmod/UberGunner_v_m4a1.mdl"

public plugin_init()
{
    
register_plugin("SUPERHERO Uber Gunner""1.0""paton/Kebmaster")
    
    new 
pcvarLevel register_cvar("UberGunner_level""0")
    new 
pcvarHealth register_cvar("UberGunner_health""150")  
    new 
pcvarArmor register_cvar("UberGunner_armor""150")
    new 
pcvarSpeed register_cvar("UberGunner_speed""400")
    new 
pcvarMult register_cvar("UberGunner_M4A1mult""5")
    
    
register_event("CurWeapon""weapon_change""be""1=1")
    
    
gHeroID sh_create_hero(gHeroNamepcvarLevel)
    
sh_set_hero_info(gHeroID"Wild2k""Become UberGunner - Get an m4a1 wich does more dmg.")
    
sh_set_hero_hpap(gHeroIDpcvarHealth0)
    
sh_set_hero_hpap(gHeroID0pcvarArmor)
    
sh_set_hero_speed(gHeroIDpcvarSpeed)
    
sh_set_hero_dmgmult(gHeroIDpcvarMultCSW_M4A1)
}

public 
sh_hero_init(idheroIDmode)
{
    if (
gHeroID != heroID) return

    switch (
mode)
    {
        case 
SH_HERO_ADD:
        {
            
gHasUberGunnerPower[id] = true
            UberGunner_weapon
(id)
            
switch_model(id)
        
        
set_hudmessage(5020550, -1.00.4020.024.00.010.17)
        
show_hudmessage(id"UberGunner - Getting Ready 2 Own!")
        }
        case 
SH_HERO_DROP:
        {
            
gHasUberGunnerPower[id] = false
            
if (is_user_alive(id))
            {
            
UberGunner_unmorph(id)
        
sh_drop_weapon(idCSW_M4A1true)                  
            }
        }
    }
}
public 
plugin_precache()
{
    
precache_model(gUberGunnerPlayer)
    
precache_model(gUberGunnerWeapon)
}

public 
weapon_change(id)
{

    if ( !
sh_is_active() || !gHasUberGunnerPower[id] ) return
    
    new 
weaponID read_data(2)
    if (
weaponID !=CSW_M4A1) return
    
    
switch_model(id)
    
    if (
read_data(3) == 0)
    {
        
sh_reload_ammo(id1)
    }
}

public 
sh_client_spawn(id)
{
    if (
gHasUberGunnerPower[id])
    {
        
UberGunner_morph(id)
        
UberGunner_weapon(id)
    }
}
UberGunner_morph(id)
{
    
cs_set_user_model(id"UberGunner")
}
UberGunner_unmorph(id)
{
    
cs_reset_user_model(id)
}

switch_model(id)
{
    if (!
sh_is_active() || !is_user_alive(id) || !gHasUberGunnerPower[id] ) return
    
    if (
get_user_weapon(id) == CSW_M4A1)
    {
        
set_pev(idpev_viewmodel2gUberGunnerWeapon)
    }
}  
UberGunner_weapon(id)
{
    if (
sh_is_active() && is_user_alive(id) && gHasUberGunnerPower[id] )
    {
        
sh_give_weapon(idCSW_M4A1)
    }

Kennarn is offline
raghunarnindi001
Member
Join Date: Apr 2011
Old 07-08-2011 , 05:09   Re: Error while playing on my server
#6

i know it !!!! Disable the plugins (the last added) and search for the .sma (in alliedmodders) file and compile it on your computer ... and then overwrite the existing .amxx (plugin file)
with the complied one
raghunarnindi001 is offline
Exploited
Veteran Member
Join Date: Jul 2010
Location: Sweden
Old 07-08-2011 , 05:15   Re: Error while playing on my server
#7

Frieza is known for causing crashes. Disable it and see what happens.
__________________
Jelle (1): I LOVE YOU
Jelle (1): Yeah. omg you are so awesome!
--------------
Jelle (1): You know when a poo is about to exit but it is too big?
Jelle (1): God my ass still hurts
Exploited is offline
raghunarnindi001
Member
Join Date: Apr 2011
Old 07-08-2011 , 05:30   Re: Error while playing on my server
#8

Frieza ?
raghunarnindi001 is offline
The Art of War
Veteran Member
Join Date: Dec 2009
Location: Sweden Rock Festival
Old 07-08-2011 , 07:50   Re: Error while playing on my server
#9

Quote:
Originally Posted by Exploited View Post
Frieza is known for causing crashes. Disable it and see what happens.
Not like that... Only when 2 discs are met (atleast it used to be 100% crash sure in that case before).
__________________
The Art of War is offline
Exploited
Veteran Member
Join Date: Jul 2010
Location: Sweden
Old 07-08-2011 , 12:02   Re: Error while playing on my server
#10

Quote:
Originally Posted by The Art of War View Post
Not like that... Only when 2 discs are met (atleast it used to be 100% crash sure in that case before).
I never used a dedicated server so I wouldn't know.
__________________
Jelle (1): I LOVE YOU
Jelle (1): Yeah. omg you are so awesome!
--------------
Jelle (1): You know when a poo is about to exit but it is too big?
Jelle (1): God my ass still hurts
Exploited is offline
Closed Thread



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:54.


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