.:: Bots United ::.  
filebase forums discord server github wiki web
cubebot epodbot fritzbot gravebot grogbot hpbbot ivpbot jkbotti joebot
meanmod podbotmm racc rcbot realbot sandbot shrikebot soulfathermaps yapb

Go Back   .:: Bots United ::. > Developer's Farm > General Programming
General Programming Help others and get yourself helped here!

Reply
 
Thread Tools
How to debug linux crashes
Old
  (#1)
KWo
Developer of PODBot mm
 
KWo's Avatar
 
Status: Offline
Posts: 3,425
Join Date: Apr 2004
Default How to debug linux crashes - 04-01-2006

I've compiled the linux *so file of podbot_mm, gave it to KaszpiR and he says - "yes - this version crashes not so often (it's more stable) like the version in package R2B46d, but still it crashes. He gave me the info from logs of his server. How to find the problem if linux HLDS reports such below crashes?
The filse has been created as it was described in this topic.
CRASH: Wed Jan 4 01:08:02 CET 2006
Start Line: ./hlds_i686 -game cstrike -debug +sv_lan 1 +log on -insecure -nomaster -nodns +maxplayers 20 +exec server.cfg +map de_dust -pidfile hlds.15735.pid
Using host libthread_db library "/lib/tls/libthread_db.so.1".
Core was generated by `./hlds_i686 -game cstrike -debug +sv_lan 1 +log on -insecure -nomaster -nodns +'.
Program terminated with signal 11, Segmentation fault.
#0 0x00289dd9 in ?? ()
#0 0x00289dd9 in ?? ()
End of crash report
----------------------------------------------
----------------------------------------------
CRASH: Wed Jan 4 07:56:39 CET 2006
Start Line: ./hlds_i686 -game cstrike -debug +sv_lan 1 +log on -insecure -nomaster -nodns +maxplayers 20 +exec server.cfg +map de_dust -pidfile hlds.15735.pid
Using host libthread_db library "/lib/tls/libthread_db.so.1".
Core was generated by `./hlds_i686 -game cstrike -debug +sv_lan 1 +log on -insecure -nomaster -nodns +'.
Program terminated with signal 11, Segmentation fault.
#0 0x02812dd9 in ?? ()
#0 0x02812dd9 in ?? ()
End of crash report
  
Reply With Quote
Re: How to debug linux crashes
Old
  (#2)
[NvT]_KaszpiR_
Member
 
[NvT]_KaszpiR_'s Avatar
 
Status: Offline
Posts: 322
Join Date: Apr 2004
Default Re: How to debug linux crashes - 04-01-2006

aditionally crashers were reported on cs_backalley (twice so far) and cs_havana

in previous versions i rember the most crahshable map was de_chateau

tests on

Distro Name Fedora Core release 3 (Heidelberg)
Kernel Version 2.6.9-1.667

Ram: 256Mb

Processors 1 Model Intel(R) Pentium(R) 4 CPU 1.80GHz
CPU Speed 1.79 GHz
Cache Size
256 KB
System Bogomips 3538.94
IDE interface: Intel Corp. 82801BA IDE U100
00:1f.3 SMBus: Intel Corp. 82801BA/BAM SMBus
00:1f.5 Multimedia audio controller: Intel Corp. 82801BA/BAM AC'97 Audio
01:00.0 VGA compatible controller: nVidia Corporation NV5 [RIVA TNT2/TNT2 Pro]
02:08.0 Ethernet controller: Intel Corp. 82801BA/BAM/CA/CAM Ethernet Controller

IDE Devices
hda: ST340016A (Capacity: 37.29 GB)
hdb: IBM-DTLA-305020 (Capacity: 19.00 GB)
hdc: LTN486S



Last edited by [NvT]_KaszpiR_; 04-01-2006 at 17:39..
  
Reply With Quote
Re: How to debug linux crashes
Old
  (#3)
Whistler
Summoner
 
Whistler's Avatar
 
Status: Offline
Posts: 1,499
Join Date: Feb 2004
Location: Mist Village
Default Re: How to debug linux crashes - 05-01-2006

compile with the paramater -g3 and use gdb to debug it.
it will tell you the exact place of the crash.
  
Reply With Quote
Re: How to debug linux crashes
Old
  (#4)
KWo
Developer of PODBot mm
 
KWo's Avatar
 
Status: Offline
Posts: 3,425
Join Date: Apr 2004
Default Re: How to debug linux crashes - 05-01-2006

n00b's question - I don't know what is "gdb" - is this some tool for debugging? Is there a topic how to use it (or some manual for n00bs)? Does it mean that gdb (if it's a tool) needs to be fired-up on that server to show the crash place?
  
Reply With Quote
Re: How to debug linux crashes
Old
  (#5)
Whistler
Summoner
 
Whistler's Avatar
 
Status: Offline
Posts: 1,499
Join Date: Feb 2004
Location: Mist Village
Default Re: How to debug linux crashes - 05-01-2006

gdb = GNU Debugger

I don't have a step by step tutorial but here is its current official web site:
http://www.gnu.org/software/gdb/
Hope you can find some useful information there.
Or try the help file of gdb:
$ info gdb

There are also some GUI-based debuggers such as RedHat Insight or KDbg (portion of KDE) which may be easier.
  
Reply With Quote
Re: How to debug linux crashes
Old
  (#6)
[NvT]_KaszpiR_
Member
 
[NvT]_KaszpiR_'s Avatar
 
Status: Offline
Posts: 322
Join Date: Apr 2004
Default Re: How to debug linux crashes - 05-01-2006

i got a gdb as default debugger on hlds (and it is a default debugger if running hlds with -debug parameter)
  
Reply With Quote
Re: How to debug linux crashes
Old
  (#7)
Rick
Council Member
 
Rick's Avatar
 
Status: Offline
Posts: 690
Join Date: Dec 2003
Location: Holland
Default Re: How to debug linux crashes - 05-01-2006

After the game crashed (in gdb) just type 'backtrace' to see what the latest called functions where. Also if the game didn't ran in gdb but produced a .core file, you can open it with gdb using the -c parameter, then also just type backtrace.
  
Reply With Quote
Re: How to debug linux crashes
Old
  (#8)
[NvT]_KaszpiR_
Member
 
[NvT]_KaszpiR_'s Avatar
 
Status: Offline
Posts: 322
Join Date: Apr 2004
Default Re: How to debug linux crashes - 05-01-2006

hmm maybe i should modify hlds_runa nd add there the backtrace commadn, so it would export it to file?

just got the crash on modded .so form KWo (compiled with -g3) on cs_havana, 16bots
did as you said

Code:
$gdb hlds_i686 core.30604

Core was generated by `./hlds_i686 -game cstrike -debug +sv_lan 1 +log on -insecure -nomaster -nodns +'.
Program terminated with signal 11, Segmentation fault.
#0  0x0027ede9 in ?? ()
(gdb) backtrace
#0  0x0027ede9 in ?? ()
Cannot access memory at address 0xfeffea50
(gdb)
Code:
----------------------------------------------
CRASH: Thu Jan  5 19:40:15 CET 2006
Start Line: ./hlds_i686 -game cstrike -debug +sv_lan 1 +log on -insecure -nomaster -nodns +maxplayers 20 +exec server.cfg +map de_dust -pidfile hlds.30593.pid
Using host libthread_db library "/lib/tls/libthread_db.so.1".
Core was generated by `./hlds_i686 -game cstrike -debug +sv_lan 1 +log on -insecure -nomaster -nodns +'.
Program terminated with signal 11, Segmentation fault.
#0  0x0027ede9 in ?? ()
#0  0x0027ede9 in ?? ()
End of crash report
----------------------------------------------
(well the same gives gdb run, no wonder ;P)



and as you may expect in .log file
Code:
L 01/05/2006 - 19:20:41: Log file started (file "logs/L0105003.log") (game "cstrike") (version "47/1.1.2.5/Stdio/3327")
L 01/05/2006 - 19:20:41: Loading map "de_chateau"
L 01/05/2006 - 19:20:41: Server cvars start
L 01/05/2006 - 19:20:41: Server cvar "_tutor_bomb_viewable_check_interval" = "0.5"
L 01/05/2006 - 19:20:41: Server cvar "_tutor_debug_level" = "0"
L 01/05/2006 - 19:20:41: Server cvar "_tutor_examine_time" = "0.5"
L 01/05/2006 - 19:20:41: Server cvar "_tutor_hint_interval_time" = "10.0"
L 01/05/2006 - 19:20:41: Server cvar "_tutor_look_angle" = "10"
L 01/05/2006 - 19:20:41: Server cvar "_tutor_look_distance" = "200"
L 01/05/2006 - 19:20:41: Server cvar "_tutor_message_character_display_time_coefficient" = "0.07"
L 01/05/2006 - 19:20:41: Server cvar "_tutor_message_minimum_display_time" = "1"
L 01/05/2006 - 19:20:41: Server cvar "_tutor_message_repeats" = "5"
L 01/05/2006 - 19:20:41: Server cvar "_tutor_view_distance" = "1000"
L 01/05/2006 - 19:20:41: Server cvar "allow_spectators" = "1.0"
L 01/05/2006 - 19:20:41: Server cvar "coop" = "0"
L 01/05/2006 - 19:20:41: Server cvar "deathmatch" = "1"
L 01/05/2006 - 19:20:41: Server cvar "decalfrequency" = "30"
L 01/05/2006 - 19:20:41: Server cvar "edgefriction" = "2"
L 01/05/2006 - 19:20:41: Server cvar "hostage_debug" = "0"
L 01/05/2006 - 19:20:41: Server cvar "hostage_stop" = "0"
L 01/05/2006 - 19:20:41: Server cvar "humans_join_team" = "any"
L 01/05/2006 - 19:20:41: Server cvar "max_queries_sec" = "3.0"
L 01/05/2006 - 19:20:41: Server cvar "max_queries_sec_global" = "30"
L 01/05/2006 - 19:20:41: Server cvar "max_queries_window" = "60"
L 01/05/2006 - 19:20:41: Server cvar "metamod_version" = "1.18p26"
L 01/05/2006 - 19:20:41: Server cvar "mp_allowmonsters" = "0"
L 01/05/2006 - 19:20:41: Server cvar "mp_autokick" = "1"
L 01/05/2006 - 19:20:41: Server cvar "mp_autoteambalance" = "1"
L 01/05/2006 - 19:20:41: Server cvar "mp_buytime" = "1.5"
L 01/05/2006 - 19:20:41: Server cvar "mp_c4timer" = "45"
L 01/05/2006 - 19:20:41: Server cvar "mp_chattime" = "10"
L 01/05/2006 - 19:20:41: Server cvar "mp_consistency" = "1"
L 01/05/2006 - 19:20:41: Server cvar "mp_fadetoblack" = "0"
L 01/05/2006 - 19:20:41: Server cvar "mp_flashlight" = "0"
L 01/05/2006 - 19:20:41: Server cvar "mp_footsteps" = "1"
L 01/05/2006 - 19:20:41: Server cvar "mp_forcecamera" = "0"
L 01/05/2006 - 19:20:41: Server cvar "mp_forcechasecam" = "0"
L 01/05/2006 - 19:20:41: Server cvar "mp_fragsleft" = "0"
L 01/05/2006 - 19:20:41: Server cvar "mp_freezetime" = "6"
L 01/05/2006 - 19:20:41: Server cvar "mp_friendlyfire" = "0"
L 01/05/2006 - 19:20:41: Server cvar "mp_ghostfrequency" = "0.1"
L 01/05/2006 - 19:20:41: Server cvar "mp_hostagepenalty" = "13"
L 01/05/2006 - 19:20:41: Server cvar "mp_kickpercent" = "0.66"
L 01/05/2006 - 19:20:41: Server cvar "mp_limitteams" = "2"
L 01/05/2006 - 19:20:41: Server cvar "mp_logdetail" = "0"
L 01/05/2006 - 19:20:41: Server cvar "mp_logfile" = "1"
L 01/05/2006 - 19:20:41: Server cvar "mp_logmessages" = "1"
L 01/05/2006 - 19:20:41: Server cvar "mp_mapvoteratio" = "0.66"
L 01/05/2006 - 19:20:41: Server cvar "mp_maxrounds" = "0"
L 01/05/2006 - 19:20:41: Server cvar "mp_mirrordamage" = "0"
L 01/05/2006 - 19:20:41: Server cvar "mp_playerid" = "0"
L 01/05/2006 - 19:20:41: Server cvar "mp_roundtime" = "5"
L 01/05/2006 - 19:20:41: Server cvar "mp_startmoney" = "800"
L 01/05/2006 - 19:20:41: Server cvar "mp_timeleft" = "0"
L 01/05/2006 - 19:20:41: Server cvar "mp_timelimit" = "20"
L 01/05/2006 - 19:20:41: Server cvar "mp_tkpunish" = "0"
L 01/05/2006 - 19:20:41: Server cvar "mp_windifference" = "1"
L 01/05/2006 - 19:20:41: Server cvar "mp_winlimit" = "0"
L 01/05/2006 - 19:20:41: Server cvar "pausable" = "0"
L 01/05/2006 - 19:20:41: Server cvar "pb_aim_damper_coefficient_x" = "0.22"
L 01/05/2006 - 19:20:41: Server cvar "pb_aim_damper_coefficient_y" = "0.22"
L 01/05/2006 - 19:20:41: Server cvar "pb_aim_deviation_x" = "2.0"
L 01/05/2006 - 19:20:41: Server cvar "pb_aim_deviation_y" = "1.0"
L 01/05/2006 - 19:20:41: Server cvar "pb_aim_influence_x_on_y" = "0.25"
L 01/05/2006 - 19:20:41: Server cvar "pb_aim_influence_y_on_x" = "0.17"
L 01/05/2006 - 19:20:41: Server cvar "pb_aim_notarget_slowdown_ratio" = "0.5"
L 01/05/2006 - 19:20:41: Server cvar "pb_aim_offset_delay" = "1.2"
L 01/05/2006 - 19:20:41: Server cvar "pb_aim_spring_stiffness_x" = "13.0"
L 01/05/2006 - 19:20:41: Server cvar "pb_aim_spring_stiffness_y" = "13.0"
L 01/05/2006 - 19:20:41: Server cvar "pb_aim_type" = "4"
L 01/05/2006 - 19:20:41: Server cvar "pb_chat" = "0"
L 01/05/2006 - 19:20:41: Server cvar "pb_dangerfactor" = "800"
L 01/05/2006 - 19:20:41: Server cvar "pb_detailnames" = "1"
L 01/05/2006 - 19:20:41: Server cvar "pb_jasonmode" = "0"
L 01/05/2006 - 19:20:41: Server cvar "pb_mapstartbotdelay" = "10"
L 01/05/2006 - 19:20:41: Server cvar "pb_maxbots" = "16"
L 01/05/2006 - 19:20:41: Server cvar "pb_maxbotskill" = "100"
L 01/05/2006 - 19:20:41: Server cvar "pb_maxweaponpickup" = "10"
L 01/05/2006 - 19:20:41: Server cvar "pb_minbots" = "0"
L 01/05/2006 - 19:20:41: Server cvar "pb_minbotskill" = "95"
L 01/05/2006 - 19:20:41: Server cvar "pb_numfollowuser" = "5"
L 01/05/2006 - 19:20:41: Server cvar "pb_shootthruwalls" = "1"
L 01/05/2006 - 19:20:41: Server cvar "pb_spray" = "1"
L 01/05/2006 - 19:20:41: Server cvar "pb_timer_grenade" = "0.5"
L 01/05/2006 - 19:20:41: Server cvar "pb_timer_pickup" = "0.3"
L 01/05/2006 - 19:20:41: Server cvar "pb_timer_sound" = "0.5"
L 01/05/2006 - 19:20:41: Server cvar "pb_usespeech" = "0"
L 01/05/2006 - 19:20:41: Server cvar "pb_welcomemsgs" = "0"
L 01/05/2006 - 19:20:41: Server cvar "pb_wptfolder" = "wptdefault"
L 01/05/2006 - 19:20:41: Server cvar "sv_accelerate" = "5"
L 01/05/2006 - 19:20:41: Server cvar "sv_aim" = "0"
L 01/05/2006 - 19:20:41: Server cvar "sv_airaccelerate" = "10"
L 01/05/2006 - 19:20:41: Server cvar "sv_airmove" = "1"
L 01/05/2006 - 19:20:41: Server cvar "sv_allowupload" = "1"
L 01/05/2006 - 19:20:41: Server cvar "sv_alltalk" = "0"
L 01/05/2006 - 19:20:41: Server cvar "sv_bounce" = "1"
L 01/05/2006 - 19:20:41: Server cvar "sv_cheats" = "0"
L 01/05/2006 - 19:20:41: Server cvar "sv_clienttrace" = "1"
L 01/05/2006 - 19:20:41: Server cvar "sv_clipmode" = "0"
L 01/05/2006 - 19:20:41: Server cvar "sv_contact" = ""
L 01/05/2006 - 19:20:41: Server cvar "sv_friction" = "4"
L 01/05/2006 - 19:20:41: Server cvar "sv_gravity" = "800"
L 01/05/2006 - 19:20:41: Server cvar "sv_logblocks" = "0"
L 01/05/2006 - 19:20:41: Server cvar "sv_maxrate" = "0"
L 01/05/2006 - 19:20:41: Server cvar "sv_maxspeed" = "900"
L 01/05/2006 - 19:20:41: Server cvar "sv_minrate" = "0"
L 01/05/2006 - 19:20:41: Server cvar "sv_password" = ""
L 01/05/2006 - 19:20:41: Server cvar "sv_proxies" = "1"
L 01/05/2006 - 19:20:41: Server cvar "sv_region" = "-1"
L 01/05/2006 - 19:20:41: Server cvar "sv_restart" = "0"
L 01/05/2006 - 19:20:41: Server cvar "sv_restartround" = "0"
L 01/05/2006 - 19:20:41: Server cvar "sv_stepsize" = "18"
L 01/05/2006 - 19:20:41: Server cvar "sv_stopspeed" = "75"
L 01/05/2006 - 19:20:41: Server cvar "sv_uploadmax" = "0.5"
L 01/05/2006 - 19:20:41: Server cvar "sv_voiceenable" = "1"
L 01/05/2006 - 19:20:41: Server cvar "sv_wateraccelerate" = "10"
L 01/05/2006 - 19:20:41: Server cvar "sv_waterfriction" = "1"
L 01/05/2006 - 19:20:41: Server cvars end
L 01/05/2006 - 19:21:02: Started map "de_chateau" (CRC "-1390736334")
L 01/05/2006 - 19:21:02: Server cvar "pb_aim_deviation_y" = "2.0"
L 01/05/2006 - 19:21:02: Server cvar "pb_aim_deviation_y" = "1.0"
L 01/05/2006 - 19:21:09: World triggered "Round_Start"
L 01/05/2006 - 19:21:11: "[P*D]Clint_Eastwood (100)<29><BOT><>" entered the game
L 01/05/2006 - 19:21:11: "[P*D]Clint_Eastwood (100)<29><BOT><>" joined team "CT"
L 01/05/2006 - 19:21:11: "[P*D]Joe_Pesci (100)<30><BOT><>" entered the game
L 01/05/2006 - 19:21:11: "[P*D]Joe_Pesci (100)<30><BOT><>" joined team "TERRORIST"
L 01/05/2006 - 19:21:11: World triggered "Game_Commencing"
L 01/05/2006 - 19:21:11: World triggered "Game_Commencing" (CT "0") (T "0")
L 01/05/2006 - 19:21:11: World triggered "Round_End"
L 01/05/2006 - 19:21:12: "[P0D]Kate_Winslet (100)<31><BOT><>" entered the game
L 01/05/2006 - 19:21:12: "[P0D]Kate_Winslet (100)<31><BOT><>" joined team "TERRORIST"
L 01/05/2006 - 19:21:12: "[POD]Murder Inc. (100)<32><BOT><>" entered the game
L 01/05/2006 - 19:21:12: "[POD]Murder Inc. (100)<32><BOT><>" joined team "CT"
L 01/05/2006 - 19:21:13: "[POD]Keanau_Reeves (100)<33><BOT><>" entered the game
L 01/05/2006 - 19:21:13: "[POD]Keanau_Reeves (100)<33><BOT><>" joined team "CT"
L 01/05/2006 - 19:21:13: "[POD]Mickey_Rourke (100)<34><BOT><>" entered the game
L 01/05/2006 - 19:21:13: "[POD]Mickey_Rourke (100)<34><BOT><>" joined team "TERRORIST"
L 01/05/2006 - 19:21:14: "[P*D]Nicole_Kidman (100)<35><BOT><>" entered the game
L 01/05/2006 - 19:21:14: "[P*D]Nicole_Kidman (100)<35><BOT><>" joined team "CT"
L 01/05/2006 - 19:21:14: "[P0D]Stacy_Keech (100)<36><BOT><>" entered the game
L 01/05/2006 - 19:21:14: "[P*D]Joe_Pesci (100)<30><BOT><TERRORIST>" triggered "Spawned_With_The_Bomb"
L 01/05/2006 - 19:21:14: "[P0D]Stacy_Keech (100)<36><BOT><>" joined team "TERRORIST"
L 01/05/2006 - 19:21:15: "[P*D]Trust Noone (100)<37><BOT><>" entered the game
L 01/05/2006 - 19:21:15: "[P*D]Trust Noone (100)<37><BOT><>" joined team "TERRORIST"
L 01/05/2006 - 19:21:15: "[P*D]Wesley_Snipes (100)<38><BOT><>" entered the game
L 01/05/2006 - 19:21:15: "[P*D]Wesley_Snipes (100)<38><BOT><>" joined team "CT"
L 01/05/2006 - 19:21:16: "[P0D]Botsie Collins (100)<39><BOT><>" entered the game
L 01/05/2006 - 19:21:16: "[P0D]Botsie Collins (100)<39><BOT><>" joined team "CT"
L 01/05/2006 - 19:21:16: "[P0D]Bruce_Lee (100)<40><BOT><>" entered the game
L 01/05/2006 - 19:21:16: "[P0D]Bruce_Lee (100)<40><BOT><>" joined team "TERRORIST"
L 01/05/2006 - 19:21:17: "[P*D]Pissed Off (100)<41><BOT><>" entered the game
L 01/05/2006 - 19:21:17: "[P*D]Pissed Off (100)<41><BOT><>" joined team "TERRORIST"
L 01/05/2006 - 19:21:17: "[P0D]Heather_Locklear (100)<42><BOT><>" entered the game
L 01/05/2006 - 19:21:17: "[P0D]Heather_Locklear (100)<42><BOT><>" joined team "CT"
L 01/05/2006 - 19:21:20: World triggered "Round_Start"
L 01/05/2006 - 19:21:37: "[P*D]Nicole_Kidman (100)<35><BOT><CT>" killed "[P*D]Pissed Off (100)<41><BOT><TERRORIST>" with "deagle"
L 01/05/2006 - 19:21:38: "[P0D]Stacy_Keech (100)<36><BOT><TERRORIST>" killed "[P*D]Nicole_Kidman (100)<35><BOT><CT>" with "p228"
L 01/05/2006 - 19:21:41: "[P0D]Stacy_Keech (100)<36><BOT><TERRORIST>" killed "[POD]Murder Inc. (100)<32><BOT><CT>" with "p228"
L 01/05/2006 - 19:21:41: "[P0D]Heather_Locklear (100)<42><BOT><CT>" killed "[P0D]Stacy_Keech (100)<36><BOT><TERRORIST>" with "deagle"
L 01/05/2006 - 19:21:44: "[P*D]Wesley_Snipes (100)<38><BOT><CT>" killed "[POD]Mickey_Rourke (100)<34><BOT><TERRORIST>" with "deagle"
L 01/05/2006 - 19:21:44: "[P0D]Bruce_Lee (100)<40><BOT><TERRORIST>" killed "[P*D]Wesley_Snipes (100)<38><BOT><CT>" with "deagle"
L 01/05/2006 - 19:21:45: "[P0D]Bruce_Lee (100)<40><BOT><TERRORIST>" killed "[P0D]Heather_Locklear (100)<42><BOT><CT>" with "deagle"
L 01/05/2006 - 19:21:50: "[P*D]Joe_Pesci (100)<30><BOT><TERRORIST>" triggered "Planted_The_Bomb"
L 01/05/2006 - 19:21:50: "[P*D]Joe_Pesci (100)<30><BOT><TERRORIST>" say_team "Planted the Bomb!"
L 01/05/2006 - 19:22:05: "[P0D]Kate_Winslet (100)<31><BOT><TERRORIST>" killed "[P*D]Clint_Eastwood (100)<29><BOT><CT>" with "p228"
L 01/05/2006 - 19:22:05: "[P0D]Kate_Winslet (100)<31><BOT><TERRORIST>" killed "[POD]Keanau_Reeves (100)<33><BOT><CT>" with "p228"
L 01/05/2006 - 19:22:10: "[P0D]Kate_Winslet (100)<31><BOT><TERRORIST>" killed "[P0D]Botsie Collins (100)<39><BOT><CT>" with "p228"
L 01/05/2006 - 19:22:10: Team "TERRORIST" triggered "Terrorists_Win" (CT "0") (T "1")
L 01/05/2006 - 19:22:10: World triggered "Round_End"
L 01/05/2006 - 19:22:15: "[P0D]Kate_Winslet (100)<31><BOT><TERRORIST>" triggered "Spawned_With_The_Bomb"
L 01/05/2006 - 19:22:21: World triggered "Round_Start"
L 01/05/2006 - 19:22:45: "[P*D]Pissed Off (100)<41><BOT><TERRORIST>" killed "[P*D]Clint_Eastwood (100)<29><BOT><CT>" with "ak47"
L 01/05/2006 - 19:22:50: "[P*D]Nicole_Kidman (100)<35><BOT><CT>" killed "[P*D]Trust Noone (100)<37><BOT><TERRORIST>" with "mp5navy"
L 01/05/2006 - 19:22:53: "[P*D]Pissed Off (100)<41><BOT><TERRORIST>" killed "[POD]Murder Inc. (100)<32><BOT><CT>" with "ak47"
L 01/05/2006 - 19:22:53: "[P0D]Heather_Locklear (100)<42><BOT><CT>" killed "[P*D]Pissed Off (100)<41><BOT><TERRORIST>" with "mp5navy"
L 01/05/2006 - 19:22:55: "[P0D]Kate_Winslet (100)<31><BOT><TERRORIST>" killed "[P*D]Nicole_Kidman (100)<35><BOT><CT>" with "galil"
L 01/05/2006 - 19:22:57: "[P0D]Kate_Winslet (100)<31><BOT><TERRORIST>" killed "[P0D]Heather_Locklear (100)<42><BOT><CT>" with "galil"
L 01/05/2006 - 19:22:58: "[POD]Keanau_Reeves (100)<33><BOT><CT>" killed "[P0D]Kate_Winslet (100)<31><BOT><TERRORIST>" with "fiveseven"
L 01/05/2006 - 19:22:58: "[P0D]Kate_Winslet (100)<31><BOT><TERRORIST>" triggered "Dropped_The_Bomb"
L 01/05/2006 - 19:22:59: "[P*D]Wesley_Snipes (100)<38><BOT><CT>" killed "[P0D]Stacy_Keech (100)<36><BOT><TERRORIST>" with "usp"
L 01/05/2006 - 19:23:02: "[P0D]Bruce_Lee (100)<40><BOT><TERRORIST>" killed "[P*D]Wesley_Snipes (100)<38><BOT><CT>" with "scout"
L 01/05/2006 - 19:23:25: "[P*D]Joe_Pesci (100)<30><BOT><TERRORIST>" triggered "Got_The_Bomb"
L 01/05/2006 - 19:23:26: "[P*D]Joe_Pesci (100)<30><BOT><TERRORIST>" killed "[P0D]Botsie Collins (100)<39><BOT><CT>" with "ak47"
L 01/05/2006 - 19:24:01: "[P*D]Joe_Pesci (100)<30><BOT><TERRORIST>" triggered "Planted_The_Bomb"
L 01/05/2006 - 19:24:01: "[P*D]Joe_Pesci (100)<30><BOT><TERRORIST>" say_team "Planted the Bomb!"
L 01/05/2006 - 19:24:31: "[P0D]Bruce_Lee (100)<40><BOT><TERRORIST>" killed "[POD]Keanau_Reeves (100)<33><BOT><CT>" with "scout"
L 01/05/2006 - 19:24:31: Team "TERRORIST" triggered "Terrorists_Win" (CT "0") (T "2")
L 01/05/2006 - 19:24:31: World triggered "Round_End"
L 01/05/2006 - 19:24:36: "[POD]Mickey_Rourke (100)<34><BOT><TERRORIST>" triggered "Spawned_With_The_Bomb"
L 01/05/2006 - 19:24:42: World triggered "Round_Start"
L 01/05/2006 - 19:25:02: "[P*D]Nicole_Kidman (100)<35><BOT><CT>" killed "[P*D]Joe_Pesci (100)<30><BOT><TERRORIST>" with "mp5navy"
L 01/05/2006 - 19:25:03: "[P*D]Pissed Off (100)<41><BOT><TERRORIST>" killed "[P*D]Nicole_Kidman (100)<35><BOT><CT>" with "ak47"
L 01/05/2006 - 19:25:04: "[P*D]Pissed Off (100)<41><BOT><TERRORIST>" killed "[POD]Keanau_Reeves (100)<33><BOT><CT>" with "ak47"
L 01/05/2006 - 19:25:10: "[POD]Mickey_Rourke (100)<34><BOT><TERRORIST>" killed "[POD]Murder Inc. (100)<32><BOT><CT>" with "mp5navy"
L 01/05/2006 - 19:25:13: "[P*D]Wesley_Snipes (100)<38><BOT><CT>" killed "[P0D]Stacy_Keech (100)<36><BOT><TERRORIST>" with "mp5navy"
L 01/05/2006 - 19:25:17: "[P*D]Wesley_Snipes (100)<38><BOT><CT>" killed "[POD]Mickey_Rourke (100)<34><BOT><TERRORIST>" with "ak47"
L 01/05/2006 - 19:25:17: "[POD]Mickey_Rourke (100)<34><BOT><TERRORIST>" triggered "Dropped_The_Bomb"
L 01/05/2006 - 19:25:34: "[P*D]Clint_Eastwood (100)<29><BOT><CT>" killed "[P0D]Kate_Winslet (100)<31><BOT><TERRORIST>" with "mp5navy"
L 01/05/2006 - 19:25:54: "[P0D]Bruce_Lee (100)<40><BOT><TERRORIST>" killed "[P*D]Wesley_Snipes (100)<38><BOT><CT>" with "deagle"
L 01/05/2006 - 19:25:56: "[P0D]Bruce_Lee (100)<40><BOT><TERRORIST>" triggered "Got_The_Bomb"
L 01/05/2006 - 19:26:01: "[P*D]Clint_Eastwood (100)<29><BOT><CT>" killed "[P*D]Trust Noone (100)<37><BOT><TERRORIST>" with "mp5navy"
L 01/05/2006 - 19:26:13: "[P*D]Clint_Eastwood (100)<29><BOT><CT>" killed "[P*D]Pissed Off (100)<41><BOT><TERRORIST>" with "mp5navy"
L 01/05/2006 - 19:27:33: "[P0D]Bruce_Lee (100)<40><BOT><TERRORIST>" killed "[P0D]Heather_Locklear (100)<42><BOT><CT>" with "scout"
L 01/05/2006 - 19:27:38: "[P0D]Bruce_Lee (100)<40><BOT><TERRORIST>" killed "[P*D]Clint_Eastwood (100)<29><BOT><CT>" with "scout"
L 01/05/2006 - 19:27:48: "[P0D]Bruce_Lee (100)<40><BOT><TERRORIST>" triggered "Planted_The_Bomb"
L 01/05/2006 - 19:27:48: "[P0D]Bruce_Lee (100)<40><BOT><TERRORIST>" say_team "Planted the Bomb!"
L 01/05/2006 - 19:28:33: Team "TERRORIST" triggered "Target_Bombed" (CT "0") (T "3")
L 01/05/2006 - 19:28:33: World triggered "Round_End"
L 01/05/2006 - 19:28:38: "[P0D]Stacy_Keech (100)<36><BOT><TERRORIST>" triggered "Spawned_With_The_Bomb"
L 01/05/2006 - 19:28:44: World triggered "Round_Start"
L 01/05/2006 - 19:29:07: "[POD]Murder Inc. (100)<32><BOT><CT>" killed "[P*D]Joe_Pesci (100)<30><BOT><TERRORIST>" with "m3"
L 01/05/2006 - 19:29:13: "[P*D]Wesley_Snipes (100)<38><BOT><CT>" killed "[P0D]Bruce_Lee (100)<40><BOT><TERRORIST>" with "mp5navy"
L 01/05/2006 - 19:29:18: "[P0D]Kate_Winslet (100)<31><BOT><TERRORIST>" killed "[POD]Murder Inc. (100)<32><BOT><CT>" with "galil"
L 01/05/2006 - 19:29:20: "[P*D]Clint_Eastwood (100)<29><BOT><CT>" killed "[P*D]Trust Noone (100)<37><BOT><TERRORIST>" with "knife"
L 01/05/2006 - 19:29:20: "[P0D]Stacy_Keech (100)<36><BOT><TERRORIST>" triggered "Planted_The_Bomb"
L 01/05/2006 - 19:29:21: "[P0D]Stacy_Keech (100)<36><BOT><TERRORIST>" say_team "Planted the Bomb!"
L 01/05/2006 - 19:29:24: "[P0D]Stacy_Keech (100)<36><BOT><TERRORIST>" killed "[P*D]Clint_Eastwood (100)<29><BOT><CT>" with "glock18"
L 01/05/2006 - 19:29:25: "[P*D]Wesley_Snipes (100)<38><BOT><CT>" killed "[P0D]Stacy_Keech (100)<36><BOT><TERRORIST>" with "mp5navy"
L 01/05/2006 - 19:29:26: "[P*D]Pissed Off (100)<41><BOT><TERRORIST>" killed "[P*D]Wesley_Snipes (100)<38><BOT><CT>" with "sg552"
L 01/05/2006 - 19:29:42: "[P0D]Kate_Winslet (100)<31><BOT><TERRORIST>" killed "[P0D]Heather_Locklear (100)<42><BOT><CT>" with "galil"
L 01/05/2006 - 19:29:44: "[POD]Mickey_Rourke (100)<34><BOT><TERRORIST>" killed "[POD]Keanau_Reeves (100)<33><BOT><CT>" with "galil"
L 01/05/2006 - 19:29:44: "[P0D]Botsie Collins (100)<39><BOT><CT>" killed "[P*D]Pissed Off (100)<41><BOT><TERRORIST>" with "mp5navy"
L 01/05/2006 - 19:29:47: "[P0D]Kate_Winslet (100)<31><BOT><TERRORIST>" killed "[P0D]Botsie Collins (100)<39><BOT><CT>" with "galil"
L 01/05/2006 - 19:30:06: Team "TERRORIST" triggered "Target_Bombed" (CT "0") (T "4")
L 01/05/2006 - 19:30:06: World triggered "Round_End"
L 01/05/2006 - 19:30:11: "[P*D]Trust Noone (100)<37><BOT><TERRORIST>" triggered "Spawned_With_The_Bomb"
L 01/05/2006 - 19:30:17: World triggered "Round_Start"
L 01/05/2006 - 19:30:37: "[P*D]Joe_Pesci (100)<30><BOT><TERRORIST>" killed "[P*D]Clint_Eastwood (100)<29><BOT><CT>" with "mp5navy"
L 01/05/2006 - 19:30:40: "[P*D]Trust Noone (100)<37><BOT><TERRORIST>" triggered "Planted_The_Bomb"
L 01/05/2006 - 19:30:41: "[P*D]Trust Noone (100)<37><BOT><TERRORIST>" say_team "Planted the Bomb!"
L 01/05/2006 - 19:30:43: "[P*D]Wesley_Snipes (100)<38><BOT><CT>" killed "[P*D]Trust Noone (100)<37><BOT><TERRORIST>" with "m4a1"
L 01/05/2006 - 19:30:43: "[P*D]Wesley_Snipes (100)<38><BOT><CT>" killed "[P0D]Kate_Winslet (100)<31><BOT><TERRORIST>" with "m4a1"
L 01/05/2006 - 19:30:44: "[P*D]Wesley_Snipes (100)<38><BOT><CT>" killed "[P0D]Stacy_Keech (100)<36><BOT><TERRORIST>" with "m4a1"
L 01/05/2006 - 19:30:52: "[P*D]Wesley_Snipes (100)<38><BOT><CT>" killed "[P0D]Bruce_Lee (100)<40><BOT><TERRORIST>" with "ak47"
L 01/05/2006 - 19:30:55: "[P*D]Wesley_Snipes (100)<38><BOT><CT>" say_team "Trying to defuse the Bomb!"
L 01/05/2006 - 19:30:55: "[P*D]Wesley_Snipes (100)<38><BOT><CT>" triggered "Begin_Bomb_Defuse_With_Kit"
L 01/05/2006 - 19:30:56: "[POD]Mickey_Rourke (100)<34><BOT><TERRORIST>" killed "[P*D]Wesley_Snipes (100)<38><BOT><CT>" with "mp5navy"
L 01/05/2006 - 19:31:09: "[P*D]Pissed Off (100)<41><BOT><TERRORIST>" killed "[POD]Murder Inc. (100)<32><BOT><CT>" with "ak47"
L 01/05/2006 - 19:31:10: "[P0D]Botsie Collins (100)<39><BOT><CT>" killed "[POD]Mickey_Rourke (100)<34><BOT><TERRORIST>" with "famas"
L 01/05/2006 - 19:31:11: "[P*D]Pissed Off (100)<41><BOT><TERRORIST>" killed "[P0D]Botsie Collins (100)<39><BOT><CT>" with "ak47"
L 01/05/2006 - 19:31:13: "[P*D]Pissed Off (100)<41><BOT><TERRORIST>" killed "[P*D]Nicole_Kidman (100)<35><BOT><CT>" with "ak47"
L 01/05/2006 - 19:31:14: "[P*D]Pissed Off (100)<41><BOT><TERRORIST>" killed "[P0D]Heather_Locklear (100)<42><BOT><CT>" with "ak47"
L 01/05/2006 - 19:31:23: "[P*D]Joe_Pesci (100)<30><BOT><TERRORIST>" killed "[POD]Keanau_Reeves (100)<33><BOT><CT>" with "ak47"
L 01/05/2006 - 19:31:23: Team "TERRORIST" triggered "Terrorists_Win" (CT "0") (T "5")
L 01/05/2006 - 19:31:23: World triggered "Round_End"
L 01/05/2006 - 19:31:28: "[P0D]Bruce_Lee (100)<40><BOT><TERRORIST>" triggered "Spawned_With_The_Bomb"
L 01/05/2006 - 19:31:34: World triggered "Round_Start"
L 01/05/2006 - 19:31:52: "[P*D]Joe_Pesci (100)<30><BOT><TERRORIST>" killed "[P*D]Wesley_Snipes (100)<38><BOT><CT>" with "ak47"
L 01/05/2006 - 19:31:53: "[P*D]Joe_Pesci (100)<30><BOT><TERRORIST>" killed "[P*D]Nicole_Kidman (100)<35><BOT><CT>" with "ak47"
L 01/05/2006 - 19:31:54: "[P*D]Joe_Pesci (100)<30><BOT><TERRORIST>" killed "[POD]Keanau_Reeves (100)<33><BOT><CT>" with "ak47"
L 01/05/2006 - 19:32:00: Bad Rcon: "rcon 526614018 "nurek" echo HLSW: Test" from "10.69.80.147:7130"
L 01/05/2006 - 19:32:05: Rcon: "rcon 526614018 "zupa" echo HLSW: Test" from "10.69.80.147:7130"
L 01/05/2006 - 19:32:08: Rcon: "rcon 526614018 "zupa" pb adbot" from "10.69.80.147:7130"
L 01/05/2006 - 19:32:09: "[P*D]Trust Noone (100)<37><BOT><TERRORIST>" killed "[P0D]Heather_Locklear (100)<42><BOT><CT>" with "mp5navy"
L 01/05/2006 - 19:32:13: Rcon: "rcon 526614018 "zupa" pb addbot" from "10.69.80.147:7130"
L 01/05/2006 - 19:32:16: Rcon: "rcon 526614018 "zupa" pb addbot 100" from "10.69.80.147:7130"
L 01/05/2006 - 19:32:20: "[P*D]Joe_Pesci (100)<30><BOT><TERRORIST>" killed "[P*D]Clint_Eastwood (100)<29><BOT><CT>" with "ak47"
L 01/05/2006 - 19:32:25: "[POD]Mickey_Rourke (100)<34><BOT><TERRORIST>" killed "[P0D]Botsie Collins (100)<39><BOT><CT>" with "sg552"
L 01/05/2006 - 19:32:35: Rcon: "rcon 526614018 "zupa" pb add" from "10.69.80.147:7130"
L 01/05/2006 - 19:32:35: "[POD]Sylvester_Stallone (95)<43><BOT><>" entered the game
L 01/05/2006 - 19:32:35: "[POD]Sylvester_Stallone (95)<43><BOT><>" joined team "CT"
L 01/05/2006 - 19:32:36: Rcon: "rcon 526614018 "zupa" pb add" from "10.69.80.147:7130"
L 01/05/2006 - 19:32:36: "[P*D]Zap! (96)<44><BOT><>" entered the game
L 01/05/2006 - 19:32:36: "[P*D]Zap! (96)<44><BOT><>" joined team "TERRORIST"
L 01/05/2006 - 19:32:36: Rcon: "rcon 526614018 "zupa" pb add" from "10.69.80.147:7130"
L 01/05/2006 - 19:32:40: "[P0D]Stacy_Keech (100)<36><BOT><TERRORIST>" killed "[POD]Murder Inc. (100)<32><BOT><CT>" with "ak47"
L 01/05/2006 - 19:32:40: Team "TERRORIST" triggered "Terrorists_Win" (CT "0") (T "6")
L 01/05/2006 - 19:32:40: World triggered "Round_End"
L 01/05/2006 - 19:32:41: Rcon: "rcon 526614018 "zupa" pb add" from "10.69.80.147:7130"
L 01/05/2006 - 19:32:41: Rcon: "rcon 526614018 "zupa" pb add" from "10.69.80.147:7130"
L 01/05/2006 - 19:32:42: Rcon: "rcon 526614018 "zupa" pb add" from "10.69.80.147:7130"
L 01/05/2006 - 19:32:45: "[P*D]Pissed Off (100)<41><BOT><TERRORIST>" triggered "Spawned_With_The_Bomb"
L 01/05/2006 - 19:32:49: Rcon: "rcon 526614018 "zupa" " from "10.69.80.147:7130"
L 01/05/2006 - 19:32:51: World triggered "Round_Start"
L 01/05/2006 - 19:33:11: Rcon: "rcon 526614018 "zupa" status" from "10.69.80.147:7130"
L 01/05/2006 - 19:33:14: "[P0D]Heather_Locklear (100)<42><BOT><CT>" killed "[P*D]Trust Noone (100)<37><BOT><TERRORIST>" with "usp"
L 01/05/2006 - 19:33:17: "[P*D]Pissed Off (100)<41><BOT><TERRORIST>" killed "[POD]Murder Inc. (100)<32><BOT><CT>" with "ak47"
L 01/05/2006 - 19:33:19: "[P0D]Stacy_Keech (100)<36><BOT><TERRORIST>" killed "[P*D]Wesley_Snipes (100)<38><BOT><CT>" with "ak47"
L 01/05/2006 - 19:33:39: "[P0D]Bruce_Lee (100)<40><BOT><TERRORIST>" killed "[POD]Keanau_Reeves (100)<33><BOT><CT>" with "glock18"
L 01/05/2006 - 19:33:39: "[P*D]Pissed Off (100)<41><BOT><TERRORIST>" triggered "Planted_The_Bomb"
L 01/05/2006 - 19:33:39: "[P*D]Pissed Off (100)<41><BOT><TERRORIST>" say_team "Planted the Bomb!"
L 01/05/2006 - 19:33:40: "[P*D]Zap! (96)<44><BOT><TERRORIST>" killed "[POD]Sylvester_Stallone (95)<43><BOT><CT>" with "xm1014"
L 01/05/2006 - 19:33:52: "[P0D]Botsie Collins (100)<39><BOT><CT>" killed "[P*D]Zap! (96)<44><BOT><TERRORIST>" with "usp"
L 01/05/2006 - 19:33:53: "[P*D]Pissed Off (100)<41><BOT><TERRORIST>" killed "[P0D]Botsie Collins (100)<39><BOT><CT>" with "ak47"
L 01/05/2006 - 19:33:54: "[P0D]Heather_Locklear (100)<42><BOT><CT>" killed "[P*D]Pissed Off (100)<41><BOT><TERRORIST>" with "usp"
L 01/05/2006 - 19:33:54: "[P0D]Heather_Locklear (100)<42><BOT><CT>" say_team "Trying to defuse the Bomb!"
L 01/05/2006 - 19:33:54: "[P0D]Heather_Locklear (100)<42><BOT><CT>" triggered "Begin_Bomb_Defuse_Without_Kit"
L 01/05/2006 - 19:34:04: "[P0D]Heather_Locklear (100)<42><BOT><CT>" triggered "Defused_The_Bomb"
L 01/05/2006 - 19:34:04: Team "CT" triggered "Bomb_Defused" (CT "1") (T "6")
L 01/05/2006 - 19:34:04: World triggered "Round_End"
L 01/05/2006 - 19:34:09: "[P*D]Zap! (96)<44><BOT><TERRORIST>" triggered "Spawned_With_The_Bomb"
L 01/05/2006 - 19:34:15: World triggered "Round_Start"
L 01/05/2006 - 19:34:33: "[P*D]Trust Noone (100)<37><BOT><TERRORIST>" killed "[POD]Murder Inc. (100)<32><BOT><CT>" with "galil"
L 01/05/2006 - 19:34:39: "[P0D]Stacy_Keech (100)<36><BOT><TERRORIST>" killed "[P*D]Clint_Eastwood (100)<29><BOT><CT>" with "ak47"
L 01/05/2006 - 19:34:40: "[POD]Sylvester_Stallone (95)<43><BOT><CT>" killed "[P0D]Kate_Winslet (100)<31><BOT><TERRORIST>" with "m4a1"
L 01/05/2006 - 19:34:47: "[P0D]Stacy_Keech (100)<36><BOT><TERRORIST>" killed "[POD]Sylvester_Stallone (95)<43><BOT><CT>" with "grenade"
L 01/05/2006 - 19:34:52: "[P*D]Zap! (96)<44><BOT><TERRORIST>" triggered "Planted_The_Bomb"
L 01/05/2006 - 19:34:52: "[P*D]Zap! (96)<44><BOT><TERRORIST>" say_team "Planted the Bomb!"
L 01/05/2006 - 19:35:00: "[P*D]Joe_Pesci (100)<30><BOT><TERRORIST>" killed "[P*D]Nicole_Kidman (100)<35><BOT><CT>" with "ak47"
L 01/05/2006 - 19:35:04: "[P0D]Bruce_Lee (100)<40><BOT><TERRORIST>" killed "[P0D]Botsie Collins (100)<39><BOT><CT>" with "glock18"
L 01/05/2006 - 19:35:06: "[P*D]Pissed Off (100)<41><BOT><TERRORIST>" killed "[P*D]Wesley_Snipes (100)<38><BOT><CT>" with "ak47"
L 01/05/2006 - 19:35:13: "[P*D]Zap! (96)<44><BOT><TERRORIST>" killed "[POD]Keanau_Reeves (100)<33><BOT><CT>" with "mp5navy"
L 01/05/2006 - 19:35:25: "[P*D]Trust Noone (100)<37><BOT><TERRORIST>" killed "[P0D]Heather_Locklear (100)<42><BOT><CT>" with "galil"
L 01/05/2006 - 19:35:25: Team "TERRORIST" triggered "Terrorists_Win" (CT "1") (T "7")
L 01/05/2006 - 19:35:25: World triggered "Round_End"
L 01/05/2006 - 19:35:30: "[P*D]Joe_Pesci (100)<30><BOT><TERRORIST>" triggered "Spawned_With_The_Bomb"
L 01/05/2006 - 19:35:36: World triggered "Round_Start"
L 01/05/2006 - 19:35:58: "[P*D]Joe_Pesci (100)<30><BOT><TERRORIST>" triggered "Planted_The_Bomb"
L 01/05/2006 - 19:35:58: "[P*D]Joe_Pesci (100)<30><BOT><TERRORIST>" say_team "Planted the Bomb!"
L 01/05/2006 - 19:36:09: "[P*D]Joe_Pesci (100)<30><BOT><TERRORIST>" killed "[POD]Sylvester_Stallone (95)<43><BOT><CT>" with "ak47"
L 01/05/2006 - 19:36:12: "[P0D]Bruce_Lee (100)<40><BOT><TERRORIST>" killed "[POD]Murder Inc. (100)<32><BOT><CT>" with "glock18"
L 01/05/2006 - 19:36:12: "[POD]Mickey_Rourke (100)<34><BOT><TERRORIST>" killed "[P*D]Nicole_Kidman (100)<35><BOT><CT>" with "sg552"
L 01/05/2006 - 19:36:14: "[P0D]Botsie Collins (100)<39><BOT><CT>" killed "[POD]Mickey_Rourke (100)<34><BOT><TERRORIST>" with "mp5navy"
L 01/05/2006 - 19:36:14: "[P*D]Pissed Off (100)<41><BOT><TERRORIST>" killed "[P0D]Botsie Collins (100)<39><BOT><CT>" with "ak47"
L 01/05/2006 - 19:36:16: "[P*D]Clint_Eastwood (100)<29><BOT><CT>" killed "[P0D]Stacy_Keech (100)<36><BOT><TERRORIST>" with "mp5navy"
L 01/05/2006 - 19:36:19: "[P*D]Trust Noone (100)<37><BOT><TERRORIST>" killed "[P0D]Heather_Locklear (100)<42><BOT><CT>" with "galil"
L 01/05/2006 - 19:36:24: "[P*D]Joe_Pesci (100)<30><BOT><TERRORIST>" killed "[P*D]Wesley_Snipes (100)<38><BOT><CT>" with "ak47"
L 01/05/2006 - 19:36:28: "[POD]Keanau_Reeves (100)<33><BOT><CT>" killed "[P0D]Kate_Winslet (100)<31><BOT><TERRORIST>" with "tmp"
L 01/05/2006 - 19:36:35: "[P*D]Joe_Pesci (100)<30><BOT><TERRORIST>" killed "[POD]Keanau_Reeves (100)<33><BOT><CT>" with "ak47"
L 01/05/2006 - 19:36:42: "[P*D]Clint_Eastwood (100)<29><BOT><CT>" killed "[P*D]Zap! (96)<44><BOT><TERRORIST>" with "mp5navy"
L 01/05/2006 - 19:36:42: "[P0D]Bruce_Lee (100)<40><BOT><TERRORIST>" killed "[P*D]Clint_Eastwood (100)<29><BOT><CT>" with "scout"
L 01/05/2006 - 19:36:42: Team "TERRORIST" triggered "Terrorists_Win" (CT "1") (T "8")
L 01/05/2006 - 19:36:42: World triggered "Round_End"
L 01/05/2006 - 19:36:47: "[P0D]Kate_Winslet (100)<31><BOT><TERRORIST>" triggered "Spawned_With_The_Bomb"
L 01/05/200
  
Reply With Quote
Re: How to debug linux crashes
Old
  (#9)
KWo
Developer of PODBot mm
 
KWo's Avatar
 
Status: Offline
Posts: 3,425
Join Date: Apr 2004
Default Re: How to debug linux crashes - 05-01-2006

OK - that -g3 flag I've put in wrong place abnd it ddn't affect at all the compilation. Now KaszpiR has the correct so (correctly compiled with -g3) and we will wait for the next crash report. I hope it will be now more helpful
  
Reply With Quote
Re: How to debug linux crashes
Old
  (#10)
KWo
Developer of PODBot mm
 
KWo's Avatar
 
Status: Offline
Posts: 3,425
Join Date: Apr 2004
Default Re: How to debug linux crashes - 06-01-2006

debug.log on KaszpiR's PC still says nothing...
----------------------------------------------
CRASH: Thu Jan 5 23:11:16 CET 2006
Start Line: ./hlds_i686 -game cstrike -debug +sv_lan 1 +log on -insecure -nomaster -nodns +maxplayers 20 +exec server.cfg +map de_chateau -pidfile hlds.7326.pid
Using host libthread_db library "/lib/tls/libthread_db.so.1".
Core was generated by `./hlds_i686 -game cstrike -debug +sv_lan 1 +log on -insecure -nomaster -nodns +'.
Program terminated with signal 11, Segmentation fault.
#0 0x00dc6689 in ?? ()
#0 0x00dc6689 in ?? ()
End of crash report
----------------------------------------------
----------------------------------------------
CRASH: Fri Jan 6 00:09:22 CET 2006
Start Line: ./hlds_i686 -game cstrike -debug +sv_lan 1 +log on -insecure -nomaster -nodns +maxplayers 20 +exec server.cfg +map de_chateau -pidfile hlds.7326.pid
Using host libthread_db library "/lib/tls/libthread_db.so.1".
Core was generated by `./hlds_i686 -game cstrike -debug +sv_lan 1 +log on -insecure -nomaster -nodns +'.
Program terminated with signal 11, Segmentation fault.
#0 0x05072689 in ?? ()
#0 0x05072689 in ?? ()
End of crash report
----------------------------------------------
----------------------------------------------
CRASH: Fri Jan 6 07:12:38 CET 2006
Start Line: ./hlds_i686 -game cstrike -debug +sv_lan 1 +log on -insecure -nomaster -nodns +maxplayers 20 +exec server.cfg +map de_chateau -pidfile hlds.7326.pid
Using host libthread_db library "/lib/tls/libthread_db.so.1".
Core was generated by `./hlds_i686 -game cstrike -debug +sv_lan 1 +log on -insecure -nomaster -nodns +'.
Program terminated with signal 11, Segmentation fault.
#0 0x0431f689 in ?? ()
#0 0x0431f689 in ?? ()
End of crash report
----------------------------------------------

I'm sure it was compiled with -g3 flag (used as one of CFLAGS).
Maybe I should use -ggdb3 instead -g3? Do these flags whole works correctly for cygwin? Maybe they arefor mingw only and cygwin needs another one to give me more helpful info?
  
Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools

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



Powered by vBulletin® Version 3.8.2
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
vBulletin Skin developed by: vBStyles.com