Raised This Month: $ Target: $400
 0% 

BUG AMXX 1.8.3-dev-git3792


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
kwpd
AlliedModders Donor
Join Date: Mar 2009
Location: panama
Old 04-13-2014 , 00:36   BUG AMXX 1.8.3-dev-git3792
Reply With Quote #1

1.8.3-dev-git3792
BUG....
cmdmenu.amxx
plmenu.amxx

start server = crashe
__________________
kwpd is offline
fysiks
Veteran Member
Join Date: Sep 2007
Location: Flatland, USA
Old 04-13-2014 , 00:59   Re: BUG AMXX 1.8.3-dev-git3792
Reply With Quote #2

You will have to be more specific for anyone to be able to do anything about it.
__________________
fysiks is offline
GuskiS
Veteran Member
Join Date: Aug 2007
Location: Latvia
Old 04-13-2014 , 07:22   Re: BUG AMXX 1.8.3-dev-git3792
Reply With Quote #3

Error when starting server with git3792:
http://i60.tinypic.com/21esxao.png
__________________
Finished mods:
Trouble in Terrorist Town
MurderMod
The Hidden
Cowboys vs Indians
JailBreak Supreme
Survival Madness
GuskiS is offline
sazonische
Senior Member
Join Date: Dec 2013
Old 04-13-2014 , 08:21   Re: BUG AMXX 1.8.3-dev-git3792
Reply With Quote #4

not work surf_ski_2 jail remover
cs team semiclip 2.0.0
sazonische is offline
Send a message via Skype™ to sazonische
sazonische
Senior Member
Join Date: Dec 2013
Old 04-13-2014 , 11:31   Re: BUG AMXX 1.8.3-dev-git3792
Reply With Quote #5

not work RegisterHam(Ham_Spawn, "player", "fwdPlayerSpawn", true);

wtf

Last edited by sazonische; 04-13-2014 at 11:31.
sazonische is offline
Send a message via Skype™ to sazonische
Arkshine
AMX Mod X Plugin Approver
Join Date: Oct 2005
Old 04-13-2014 , 16:52   Re: BUG AMXX 1.8.3-dev-git3792
Reply With Quote #6

Seriously what's wrong with you?

GuskiS, I've told you it's related to GDB, did you even tried to update it or something? Did you read my link? Does it happen with previous version?[/U]

sazonische, now you have flooded me by PM, you flood here. I've told many times to answer my questions, and I'M STILL WAITING ANSWERS.

kwpd, same as sazonische, if you don't give concrete informations, no one can help, and it's waste of time. (What mod? What OS? What HLDS version? What did you do to update? etc.)

If you guys have some difficulty to understand/write in english, please ask someone, or use a translator ; but if we can't understand you, there is no point to say "crash" without giving details.
__________________
Arkshine is offline
GuskiS
Veteran Member
Join Date: Aug 2007
Location: Latvia
Old 04-13-2014 , 17:11   Re: BUG AMXX 1.8.3-dev-git3792
Reply With Quote #7

I looked at your link. All it said was that GDB gives more descriptive error information.
I did stop my server before updating - I uploaded all files via FTP client. Im using ubuntu 10.4, metamod 1.20, it is for CS 1.6 hlds 6132.
I'm not sure about previous versions, as I tested git3791 and it crashed too, but I suppose that only inc files changed in git3792.
I will try other versions, but I have very slow upload speed here
__________________
Finished mods:
Trouble in Terrorist Town
MurderMod
The Hidden
Cowboys vs Indians
JailBreak Supreme
Survival Madness
GuskiS is offline
Arkshine
AMX Mod X Plugin Approver
Join Date: Oct 2005
Old 04-13-2014 , 17:33   Re: BUG AMXX 1.8.3-dev-git3792
Reply With Quote #8

You should use metamod 1.21-am.

Did you try to update gdb? Last time I've used gdb on debian server, it was working fine. (EDIT just tried again with latest AMXX verison, and it works fine with gdb)
__________________

Last edited by Arkshine; 04-13-2014 at 17:38.
Arkshine is offline
GuskiS
Veteran Member
Join Date: Aug 2007
Location: Latvia
Old 04-13-2014 , 17:53   Re: BUG AMXX 1.8.3-dev-git3792
Reply With Quote #9

Ok, after doing some testing, I found the problem. It was one of my plugins. After doing debuging in it, I discovered that this function is crashing server, could you take a look? Before updating amxmodx, it didn't crash.
PHP Code:
public Update_Bot()
{
    if(
g_iFakePlayer == -1)
        return;

    new 
id find_player("i");
    if(!
id)
    {
        
id engfunc(EngFunc_CreateFakeClientTTT_FAKEPLAYER);
        if(
is_valid_ent(id))
        {
            
engfunc(EngFunc_FreeEntPrivateDataid);
            
dllfunc(MetaFunc_CallGameEntity"player"id);
            
set_user_info(id"rate""3500");
            
set_user_info(id"cl_updaterate""25");
            
set_user_info(id"cl_lw""1");
            
set_user_info(id"cl_lc""1");
            
set_user_info(id"cl_dlmax""128");
            
set_user_info(id"cl_righthand""1");
            
set_user_info(id"_vgui_menus""0");
            
set_user_info(id"_ah""0");
            
set_user_info(id"dm""0");
            
set_user_info(id"tracker""0");
            
set_user_info(id"friends""0");
            
set_user_info(id"*bot""1");
            
entity_set_int(idEV_INT_flagsentity_get_int(idEV_INT_flags) | FL_FAKECLIENT);
            
entity_set_int(idEV_INT_colormapid);
            
            static 
szMsg[128];
            
dllfunc(DLLFunc_ClientConnectidTTT_FAKEPLAYER"127.0.0.1"szMsg);
            
dllfunc(DLLFunc_ClientPutInServerid);
            
            
cs_set_user_team(idCS_TEAM_CT);
            
ExecuteHamB(Ham_CS_RoundRespawnid);
            
            
entity_set_int(idEV_INT_effectsentity_get_int(idEV_INT_effects) | EF_NODRAW);
            
entity_set_int(idEV_INT_solidSOLID_NOT);
            
call_think(id);
            
            
g_iFakePlayer id;
        }
    }

__________________
Finished mods:
Trouble in Terrorist Town
MurderMod
The Hidden
Cowboys vs Indians
JailBreak Supreme
Survival Madness
GuskiS is offline
Arkshine
AMX Mod X Plugin Approver
Join Date: Oct 2005
Old 04-13-2014 , 18:01   Re: BUG AMXX 1.8.3-dev-git3792
Reply With Quote #10

Function is working fine for me.

No changes have been made in such natives. The only thing which could be related is the update of Hamsandwich module, but ExecuteHamB or Ham_CS_RoundRespawn (unless you have made change, but it's unlikely) are unchanged.

Sorry to repeat again, but you should make sure all .so, .amxx, and hamdata.ini are well updated. Also to use latest compiler if you compile something.

If all well updated, without ExecuteHamB, it doesn't crash ?
__________________

Last edited by Arkshine; 04-13-2014 at 18:06.
Arkshine is offline
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:10.


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