#bitfighter IRC Log

Index Search ←Prev date Next date→

IRC Log for 2011-07-08

Timestamps are in GMT/BST.

00:52:00koda Quit (Quit: k thx bai)
02:31:00watusimoto Quit (Ping timeout: 276 seconds)
03:24:00Flynnn has joined
03:35:00raptor has joined
03:35:00ChanServ sets mode +o raptor
04:12:00watusimoto has joined
04:19:00raptorI need thoughts:
04:20:00raptorwhat would be a good way to generate a string based on key + modifier?
04:20:00raptorand then reparse it
04:20:00raptorgood way = format
04:20:00raptorCTRL + a
04:21:00raptordetect the '+' then try and grab the modifier from the text in front of it?
04:21:00sam686not sure, i guess CTRL + a, but apple computers may have have "APP" buttin instead of "CTRL", that function the same..
04:21:00raptorthat won't matter - SDL will spit out the name as META
04:22:00sam686ok..
04:22:00raptorand SDL will spit out the the same string per keyboard code on all platforms
04:23:00raptorI think i have most new input methods written now - i just need to plug them into the rest of the classes
04:23:00raptorstarting with config.cpp - but it is a beast
04:24:00sam686anyone have a mac powerpc to test? i have heard someome having trouble with mac ppc. I did put in the forum.. http://bitfighter.org/forums/viewtopic.php?t=779
04:25:00raptorahh... I do have an old ppc Tiger computer at work
04:25:00raptorI'll have to rehook it up
04:25:00sam686ok good, but that means waiting?
04:25:00raptoryep
04:25:00raptorcan't test until tomorrow
04:41:00Flynnn Quit (Quit: This computer has gone to sleep)
04:43:00Flynnn has joined
04:46:00watusimotoI'm ready to start taking bug reports on the editor for everything not involving polywalls
04:46:00watusimotoand everything not involving ctrl not working or keys not repeating or anything sdl related
04:47:00raptorahh.. repeating keys
04:47:00watusimoto@raptor -- can I (try to) make a quick fix to get getState() working?
04:47:00raptorrats
04:47:00watusimotonot a problem -- implementing a key repeat function is pretty easy
04:47:00raptorwhat is getState?
04:47:00watusimotoit's not critical right now
04:47:00watusimotoreturns true if a key is down, false if not
04:48:00raptori didn't kn ow that was broken -
04:48:00watusimotoit's the way we check for ctrl-blah combos
04:48:00watusimotoit is
04:48:00watusimotoso you can't zoom in and out in the editor, for example
04:48:00raptorsure, make your change
04:49:00watusimotoI'm not actually sure it's easy... just hoping
04:50:00raptorthe new system actually doesn't really work that way...
04:51:00raptori still set/detect the keydown state similarly
04:51:00sam686i did find that initalizing colors into cpp instead of .h saves about 7 KB of compiled binary size..
04:51:00sam6862,787,840 bytes const color red(1,0,0) in Colors.h
04:51:00sam6862,780,160 bytes extern const color red in Colors.h
04:52:00raptorthe new system has a set of predefined KeyCode names
04:53:00raptorthen when you press a key it tries to match what you press against what is predefined
04:53:00raptorthat way we don't have to define every combo
04:53:00raptorthe predefined KeyCodes are adjustable of course, but they all have a specific identifier
04:54:00watusimoto@sam - interesting
04:54:00watusimoto@r - yes, but there must be a way to detect whether a particular key is down
04:54:00raptoryes, that is still there
04:54:00raptoror will be still there
04:54:00watusimotoit's broken, probably an easy fix
04:55:00watusimototo detect ctrl-r, we get the event for the r down, then check the status of ctrl
04:55:00watusimotoif yes, it's ctrl-r. if not, it's r (or shift-r or alt-r or shift-alt-r or...)
04:55:00raptorso righ tnow, ctrl-r registers as a key + a mod
04:56:00raptorand the new system will check that combo against the KeyCode list; if it finds a match, it set's the action as keyCodeDown
04:57:00watusimotocurrently, we're receiving events for the r being pressed
04:57:00raptorbut we'll have to implement a separate system for detecting every key for the diagnostic screen
04:57:00watusimotobut when I check the status of ctrl, it's always returning false
04:57:00watusimotoregardless of the status of the ctrl key
04:57:00raptoryes - it is saying 'unknown key'
04:57:00watusimotowhat is saying that? checkStatus?
04:57:00raptorprobably because it needs to check the SDLMod state
04:58:00watusimotoprobably
04:58:00watusimotoI'll look
04:58:00raptorthe diagnostic
04:58:00watusimotojust didn't want to interfere with any master plan
04:58:00raptorthe modifier keys actually might now be registered as an SDLKey
04:58:00raptormight *not
04:59:00raptorthere are minor inconsistencies between systems: like on Mac, i think they were registered as an SDLKey, but not on linux/windows
04:59:00raptorbut it is guaranteed that the event will detect it as a SDLMod (at least so far in my tests)
05:00:00watusimoto@karamazovapy
05:00:00watusimotoare you on?
05:02:00watusimotonm
05:05:00watusimoto@r -- everything I wrote about getstate should have been getKeyState()
05:05:00raptorok
06:18:00raptorin c++, is text within double quotes detected as a string or const char *?
06:18:00sam686double quote is string, single quote is char..
06:18:00sam686or, it mist be const char *
06:18:00sam686not string..
06:19:00raptori know you can pass text wihtin double quotes as a string
06:19:00sam686but to make it a string, try string("hello")
06:19:00raptorbut if it stands on it's own, does the compiler see a char array?
06:20:00sam686i think it sees "hello" as char*
06:20:00raptorok
06:20:00sam686you can do char c = "hello"[1] and c will be 'e'
06:20:00raptorok, just checking
06:21:00raptori guess the new eclipse still needs work on it's new real-time code analysis plugin
06:22:00zoomber has joined
06:23:00zoombersam686
06:23:00zoomberhere is the link of the bug
06:23:00zoomberhttp://img855.imageshack.us/img855/11/screenshot20110707at111.png
06:24:00zoombersee? whole area covered in spybug line of sight, yet your ship is hidden
06:24:00sam686blue flag is hidden too..
06:24:00raptori think i hate 'const'
06:24:00sam686spybug should be able to see the flag..
06:25:00zoomberyeah
06:26:00zoomberbut spybug see nothing
06:26:00sam686no blue flag in screenshot, it is CTF..
06:26:00sam686spybug covers everything for blue team..
06:29:00sam686one problem with editor is saving the level might remove some parameters, like Teleporter delay=3.2 part..
06:30:00sam686another problem with editor is ctrl + C and ctrl + V don't work yet.. might be input problem...
06:33:00raptoryeah, watusimoto said any bugs that are not input related (that is my job :)
06:48:00raptori'm struggling with enums
06:52:00Flynnn Quit (Quit: This computer has gone to sleep)
06:52:00sam686something strange is going on when loading level with polygon walls, it seems to create a copy of polygon walls (where forcefield attaches to) when moving poly walls..
06:55:00sam686that polygon problem is in editor...
07:01:00watusimoto Quit (Ping timeout: 246 seconds)
07:04:00raptorgood night
07:04:00raptor Quit (Remote host closed the connection)
07:14:00zoomber Quit (Quit: zoomber)
07:23:00kodax has joined
08:54:00LordDVG has joined
08:54:00LordDVG Quit (Changing host)
08:54:00LordDVG has joined
09:16:00LordDVG Quit (Remote host closed the connection)
09:17:00kodax Quit (Ping timeout: 252 seconds)
09:38:00kodax has joined
09:54:00kodax Quit (Ping timeout: 252 seconds)
12:53:00kodax has joined
15:25:00raptor has joined
15:25:00ChanServ sets mode +o raptor
16:05:00raptorI am sad
16:06:00raptorhttp://www.nasa.gov/mission_pages/shuttle/main/index.html
16:16:00kodax Quit (Quit: Sto andando via)
16:23:00Flynnn has joined
16:55:00karamazovapyI'm not really bummed about the final shuttle mission...but I want a moon base!
16:55:00karamazovapywe need to start terraforming that shite
16:56:00raptormars would be the better location for terraforming, i think
16:56:00raptorbut it takes months to get there...
17:00:00karamazovapyoh, it's definitely better for "real" terraforming
17:01:00karamazovapybut we need to practice before we start crash testing stuff on mars
17:01:00karamazovapyjust a stable moon base would be a step in the right direction
17:08:00karamazovapywho would've guessed this guy was gay? http://www.youtube.com/watch?v=Kgq1g-2cQ54
17:08:00raptor has left
17:08:00raptor has joined
17:08:00ChanServ sets mode +o raptor
18:08:00raptordoes anyone understand AOP? (aspect-oriented programming)
19:18:00koda has joined
19:47:00sam686does it work or not in mac ppc tiger? Don't forget to see if it does run...
19:47:00raptoroh y eah!
19:47:00raptorlet's see if this old machine still boots up...
19:51:00sam686one possible problem is the osxInput.cpp,
19:52:00raptori hate that class
19:55:00sam686it sometimes crashes in InitJoystick(), so it might be possible to stick a return right after gJoystickNames.clear();, compile, and give to blackbird / little_apple to see if it runs in in thrir older mac, or if thats not the problem. What ever the problem is, they just want it wo tork, preferably before BBB5 starts..
20:04:00raptorargh - i can't get it to boot the macos system... it only boots a linux system
20:07:00sam686i guess one option is some kind of team view to little_apple / BlackBird old mac computer...
20:09:00sam686for information from BlackBird, they say the old ZAP demo works in old mac ppc but not bitfighter
20:17:00raptori cross-compiled the package to ppc and it gave no error
20:17:00raptorI have to reinstall Tiger on this machine...
20:17:00raptornow i need a disc
20:30:00sam686can you maybe compile mac ppc with this: http://96.2.123.136/bitfighter/osxInput.cpp.txt (it disables joystick support with #defines, if that is where the error is)
20:30:00raptorsure - let me start up the VM..
20:31:00sam686be sure to compile it as 015a, with this osxInput.cpp
20:31:00raptorok
20:33:00raptorok compiling...
20:37:00sam686once you done compiling, you can upload to my uploader, and i can tell (pm) little_apple or blackbird to test it and see if it works..
20:38:00raptoryeah, that crashes
20:40:00raptor0x929163d6 in std::string::compare ()
20:40:00raptor#1 0x000b96f9 in Zap::autodetectJoystickType () at /Users/geeko/temp/hg/bitfighter/build/osx/xcode/../../../zap/input.cpp:838
20:40:00raptor#2 0x000ce7d3 in setJoystick [inlined] () at /Users/geeko/temp/hg/bitfighter/zap/main.cpp:2116
20:40:00raptor#3 0x000ce7d3 in main (argc=7, argv=0xbffff65c) at /Users/geeko/temp/hg/bitfighter/build/osx/xcode/../../../zap/main.cpp:2117
20:44:00sam686i think maybe try initJoystick () { gJoystickNames.clear(); gUseStickNumber = 0; }
20:44:00raptorwhich class is that in?
20:44:00sam686osxInpout.cpp
20:44:00sam686at the very bottom.
20:45:00sam686if you are using my osxInput.cpp...
20:45:00raptorah ok
20:52:00sam686i have just realized there is getModifierState, probably want that to work...
20:52:00sam686in osxinput.cpp
20:53:00raptorah yes
20:53:00raptorcan you make that change for me? I am reinstalling Tiger on the PPC right now...
20:55:00raptoractually i can do it - it is simple enough
20:56:00sam686i hope this looks right: http://96.2.123.136/bitfighter/osxInput.cpp1.txt
20:56:00sam686if i am right, GetCurrentEventKeyModifiers needs carbon.h
20:59:00raptorah much better - uploading now
21:00:00raptorhttp://96.2.123.136/upload/Bitfighter-015a.macosx-universal-noJoystick.dmg
21:00:00sam686ok, good..
21:00:00raptorthere was another DMG uploaded that ends in joystick-disabled; that is a broken one
21:00:00raptorthat link i just pasted is the correct one
21:00:00sam686ok
21:00:00raptorwnding in noJoystick
21:02:00raptorreinstalling MacOS X on my PPC
21:07:00sam686little_apple still have same problem with it won't start in his old mac..
21:07:00raptorrats
21:07:00raptori was hoping that was a quick fix
21:08:00raptorwell, installation is almost done - and then I can test..
21:09:00raptorhow long until BBB starts?
21:10:00raptorand you are sure it is Mac OS Tiger?
21:10:00sam686bbb5 starts in http://96.2.123.136/count/countdown.php?t=9-7-2011,0:00:00
21:11:00sam686i was told it was tiger mac ppc
21:11:00raptorok
21:11:00raptordone installing...
21:20:00sam686i will guess it fails for your mac tiger ppc, and are working to fix it...
21:21:00sam686hi
21:23:00raptorhi
21:24:00raptorfinally started up...
21:24:00sam686i am switching back and forth between irc and bitfighter, and sometimes i chat at the wrong place..
21:24:00raptorit works!
21:25:00raptorthe base 015a download from google code works fine
21:43:00karamazovapyhey - I've found three levels that crash triangle
21:43:00raptoryes!!
21:44:00karamazovapythey're not even weird levels
21:47:00raptorthe game doesn't crash, though, does it?
22:09:00Little_Apple has joined
22:09:00Little_Appleumm
22:09:00Little_Applehi?
22:09:00raptoryou m ade it!
22:09:00sam686hi
22:09:00raptorhi
22:09:00raptorwelcome
22:09:00Little_Applebrb. mom is yelling at me :|
22:09:00raptorha
22:10:00Little_Appleback
22:11:00Little_Appleare you compileing?
22:11:00Little_Apple*compiling
22:11:00raptorcan you give me the exact info string of your processor from the mac?
22:12:00Little_Appleum... ok?
22:12:00Little_Appleone sec
22:13:00Little_Applenew-host-4:Bitfighter.app/Contents/MacOS] cbarker% ./Bitfighter.sh
22:13:00Little_Appleoopz?
22:13:00Little_Appleum, its not working :|
22:13:00raptorthat's ok
22:13:00raptori think i found what i need to compile..
22:14:00Little_Appleok
22:14:00raptori will have to give it to you in a zip file - can your G3 handle zip files?
22:15:00Little_Appleyes
22:15:00Reggie_ has joined
22:15:00Reggie_hi I'm Reggie
22:16:00Reggie_Teehee
22:16:00raptorHi Reggie_
22:16:00sam686hi
22:16:00Reggie_I'm just apple. I'm testing to see if the worked on mobile
22:16:00Reggie_It apparently does
22:17:00Little_Apple\so.....
22:17:00Little_Applenow what?
22:17:00Reggie_No idea
22:17:00Little_Applehi reggie
22:17:00Reggie_Hi apple dude
22:17:00Little_Appleim talking to myself
22:17:00Reggie_Ur weird
22:18:00Little_Applesoo... any progress?
22:19:00Reggie_ Quit (Client Quit)
22:19:00raptorok, compiled and zipped: http://96.2.123.136/upload/bitfighter-G3.zip
22:20:00raptorLittle_Apple: try that file ^^
22:20:00Little_Applek. im gonna have to go for a min.
22:20:00sam686ok..
22:21:00Little_Applebrbiab
22:23:00raptorwell, Little_Apple, if this works I may need to upload a new binary to google code
22:24:00Little_Appleumm
22:24:00Little_Appleits not working :|
22:24:00Little_Applebrb. i try somthin
22:24:00raptorthe phrase "it's not working" has never helped anyone solve the problem :)
22:25:00Little_Appleits crashing just like before :\
22:25:00raptoryou unzipped the file and replaced the old bitfighter?
22:26:00Little_Appleyes
22:26:00Little_Applestill not working. doing the exact same thing as before
22:26:00raptorsegfault?
22:26:00Little_Appleum...
22:26:00Little_Appleim just trying to open it :|
22:27:00raptorOOPS
22:27:00Little_Applewhat?
22:27:00raptori gave you the wrong thing...
22:27:00Little_Apple>:|
22:28:00Little_Appleoopsie! :\
22:28:00Little_Appleyou made a boo boo
22:28:00raptorrecompiling...
22:29:00Little_Appledo i delete everything again? and replace it with the new versoion?
22:29:00raptoryeah, delete everything
22:29:00Little_Applek
22:29:00raptori am getting a new version ready for you - it'll be a couple min.
22:29:00Little_Appleall gone! :D
22:30:00Little_Appleif this works, DONT tell footloose
22:30:00Little_Applek?
22:30:00sam686time is ticking till Big Bitfighter Battle 5 starts: http://96.2.123.136/count/countdown.php?t=9-7-2011,0:00:00
22:30:00sam686ok
22:31:00Little_Applei know !!!
22:31:00Little_Apple1 HOUR!!!! D:
22:31:00Little_Appleand 30 mins :|
22:32:00Little_Applesiiiiingin' in the raaaain......
22:32:00Little_Applenarhg, brb'
22:33:00raptorok Little_Apple, try this one: http://96.2.123.136/upload/bitfighter-G3-try2.zip
22:33:00raptorthis is a Debug build with optimizations turned off and tuned specifically for a G3
22:33:00Little_Appleback. ok
22:34:00raptori'm getting a try3 ready in case this fails
22:34:00raptorbut i have to leave soon..
22:34:00Little_Appleok
22:34:00Little_Apple:(
22:35:00Little_Applenot workin >:\
22:35:00sam686any message it says?
22:35:00Little_Appleum.....
22:36:00Little_Applein what? terminal?
22:36:00raptoryes
22:36:00sam686yes, usually terminal says more about what happened..
22:36:00Little_Appleum...
22:36:00raptorif a program crashes, always run in terminal
22:36:00Little_Appleshould i try opening it with terminal?
22:36:00Little_Appleok...
22:36:00sam686yes
22:37:00raptorok try3: http://96.2.123.136/upload/bitfighter-G3-try3.zip
22:37:00Little_Applejust said segmentation fault again :|
22:37:00sam686did it say anything before segmentation fault?
22:37:00Little_Applenope
22:38:00raptorLittle_Apple: can you delete the bitfighter preferences directory?
22:38:00Little_Applei dono
22:38:00raptorit is in your home directory under Library/Application Support
22:38:00raptordelete the directory 'Bitfighter'
22:39:00Little_Appleum... ok?
22:39:00sam686i might be guessing it could be broken sound support, or broken hardware opengl, or something, not sure till we can find where it is erroring..
22:40:00Little_Appledirectory in what? application support?
22:40:00raptorhome -> Library -> Application Support -> Bitfighter
22:40:00Little_Applei did that
22:40:00raptordelete the Bitfighter directory
22:40:00Little_Applei already did
22:40:00raptoroh good
22:40:00raptornow try the try3 zip file above
22:41:00Little_Appleok
22:41:00Little_Applebounce bounce bounce bounce CRASH!!!!!
22:41:00Little_Apple>:\
22:41:00sam686a fourth try may be to insert logprintf("test1 pass") in multiple places in main.cpp
22:41:00Little_Apple:\
22:42:00sam686so it at least outputs what parts it have passed..
22:42:00raptorok Little_Apple
22:42:00Little_Appleraptor, do you have a g3 or a g4?
22:42:00raptorG4
22:42:00raptorin terminal
22:42:00Little_Appleok... it works fine on g4 :|
22:42:00Little_Appleok...
22:42:00raptorgo into the directory where i told you to run the script
22:42:00raptorbut instaed
22:42:00raptorrun this command: otool -L Bitfighter
22:43:00Little_Appleone min...
22:43:00raptortell be if it ouputs anything 'not found' or 'missing'
22:43:00Little_Appledo i need to make a terminal and the do the cd thing?
22:43:00raptoryes
22:43:00raptorthe terminal is your friend
22:43:00Little_Appleok one min...
22:43:00Little_Apple:|
22:44:00Little_Applespace otool -L?
22:44:00raptorotool -L Bitfighter
22:44:00Little_Appleor just otool -L?
22:44:00Little_Appleok?
22:44:00raptoris the only command
22:45:00Little_Applecommand not found :\
22:45:00raptorNOOOOO
22:45:00Little_AppleIKR?
22:45:00raptoryou need developer tools installed
22:46:00raptorman
22:46:00raptorok
22:46:00sam686otool connand not found?
22:46:00Little_Applei try that
22:46:00Little_Applecommand not... i dont need to finish :|
22:47:00Little_Appleim starting to think this will never work :(
22:48:00Little_Appleraptor?
22:50:00Little_AppleRRAAPPTTOORR!!!
22:50:00raptorhold yoru horses
22:50:00sam686just need that more-specific error to quickly fix, not just "Seg Fault"
22:50:00raptori am getting you another build with debug info
22:50:00Little_Applehold on horsey!
22:50:00Little_Appleok...
22:52:00raptorok, you must run this on the commandline
22:52:00Little_Appleok.....
22:52:00raptorhttp://96.2.123.136/upload/bitfighter-G3-try4.zip
22:52:00Little_Apple...............................................
22:52:00Little_Applerun wut on command line?
22:52:00raptorit shoudl spit out lots of text like "before somefunction"
22:53:00raptorthat link i just pasted: try4
22:53:00raptorreplace your old bitfighter under /Applications, and open terminal and cd to it
22:53:00Little_Appleok...
22:53:00raptorthen run the script ./bitfighter.sh again
22:54:00raptorit should be noisy and spit out lots of text
22:54:00Little_Appleok....
22:54:00raptori actually have to leave for home, be back in about 1/2 hour
22:54:00Little_Appleok
22:55:00Little_Applebai :(
22:55:00raptor Quit (Remote host closed the connection)
22:55:00Little_Apple./bitfighter.sh: line 51: 843 Segmentation fault ./Bitfighter -rootDataDir "$userdatadir" -sfxdir "$sfxdir" -scriptsdir "$scriptsdir" "$@"
22:55:00Little_Appleummm
22:55:00Little_Apple:(
22:55:00sam686did it say anything before segfault?
22:56:00Little_Applethis is all it said :|
22:56:00Little_Apple./bitfighter.sh: line 51: 843 Segmentation fault ./Bitfighter -rootDataDir "$userdatadir" -sfxdir "$sfxdir" -scriptsdir "$scriptsdir" "$@"
22:57:00sam686not sure whats wrong..
22:57:00Little_Appleim more cluless than you are :|
22:58:00sam686g
22:58:00Little_AppleWHAAAAAA!!!!!!!!!!
22:59:00sam686raptor said will be back in 30 minutes, hopefully before big battle starts..
22:59:00Little_Appleok..... :(
23:01:00Little_Appleme is sad :'(
23:02:00Little_Apple:
23:02:00Little_Apple:(
23:02:00Little_Apple8
23:02:00Little_Apple8(
23:10:00Little_Appleguess ill have to wait till the bbb6 :(
23:14:00raptor has joined
23:14:00ChanServ sets mode +o raptor
23:14:00sam686could you maybe try teamview, what that does is to allow seeing, and possibly control your computer, or your computer control mine.. http://www.teamviewer.com
23:14:00raptorhowdy
23:14:00raptorany progress?
23:14:00sam686coult try untraVNC, but i don't know about mac..
23:14:00raptorLittle_Apple: are you sure you are running the same application on the command line?
23:15:00raptorare you putting the try4 in your /Application directory?
23:17:00koda Quit (Quit: k thx bai)
23:18:00sam686seeing that little_apple screen would really help..
23:19:00raptoryes
23:19:00raptoractually mac has VNC built in
23:19:00raptorit's under their control panel -> network services or something
23:19:00raptorthey just have t oenable it
23:19:00sam686little_apple? is it in older mac?
23:19:00raptormac 10.4 has it
23:19:00raptorwhich is tiger
23:19:00sam686ok
23:20:00raptorbut he may be behind a router
23:21:00raptoracutally, my work has remote control software that will go through routers..
23:22:00raptorlet me see if there is a mac client
23:24:00karamazovapyraptor: those triangle-incompatible levels crash the server
23:24:00raptorLittle_Apple: if you are here I know how to get access to your screen
23:24:00raptorgo here: https://bokai.provo.novell.com/
23:25:00raptorkaramazovapy: that is unfortunate, i thought we handled crashing with levels gracefully
23:25:00karamazovapyyeah...crashy crashy
23:25:00karamazovapyone's available on the forums...
23:25:00sam686that triangle incompatible should be fixed, but might not be in 015a..
23:26:00karamazovapyyeah, I don't have the most recent revision
23:26:00karamazovapy(on my server)
23:26:00Little_Appleok, im back
23:26:00raptoryou don't want it, trust me :)
23:26:00raptorLittle_Apple:
23:26:00karamazovapyhttp://bitfighter.org/forums/viewtopic.php?f=34&t=280&p=1794#p1794
23:26:00Little_Appleyesh
23:26:00karamazovapyburrow crashes my linux server
23:26:00raptorare you willing to let me control your screen?
23:26:00Little_Appleum..... i dono
23:27:00karamazovapyI've hosted it successfully in the past, and I've seen it work on other servers
23:27:00raptoron the G3
23:27:00sam686oh that might be with the error of bot zones failuer...
23:27:00Little_Appleraptor
23:27:00karamazovapyyeah, it's bot zones
23:27:00raptoryes
23:27:00Little_Applehow would i take away ur control of the screen?
23:27:00karamazovapysame goes for the old zap version of galaxy crossover and drex's old "gone"
23:27:00raptorLittle_Apple: with the click of a button
23:27:00Little_Appleok...
23:27:00Little_Appleok. ill do it :|
23:28:00raptorit is an application from my work that let's you let me or deny me at any time
23:28:00raptorok
23:28:00raptorgo here: https://bokai.provo.novell.com/
23:28:00raptorenter in this key: 2122720
23:28:00karamazovapytell us what kind of porn he's been downloading!
23:29:00Little_Apple:|
23:29:00raptorit should auto-start downloading a client that will let me connect to your compy
23:29:00karamazovapylol
23:29:00raptoryou can delete it when we're done
23:29:00Little_Applek
23:29:00sam686karamov: you can fix the map by adding a line to level: BotNavMeshZone 0 0 0 1 1 0, that will disable built-in bot zone generator
23:29:00karamazovapyoooh...I'll do that! thanks sam!
23:29:00Little_Appleall i have is random junk and games. none of what _k hinks
23:29:00Little_Apple*thinks
23:30:00karamazovapyoh...you have no IDEA what I hink!
23:30:00Little_Apple:|
23:30:00raptorLittle_Apple: were you able to enter in the key?
23:30:00Little_Appleyesh
23:30:00raptordid it start downloading a client?
23:30:00raptoror launch something?
23:30:00Little_Applenot yet
23:31:00raptorare there specific instructions you have to follow?
23:31:00Little_Appleno. i just open the app thingy?
23:31:00raptoryes
23:31:00Little_Applethere
23:31:00raptorit should launch something called 'bomgar client' or 'novell chat client'
23:34:00karamazovapygreat fix sam - all levels now crash-free
23:39:00raptorok
23:39:00raptorLittle_Apple: does not run Tiger
23:39:00raptorso we can't even support his system
23:39:00Little_Applehey, bb was the one that said it ran tiger :|
23:39:00raptorhe'll need to upgrade to tiger
23:39:00raptorbb was incorrect :(
23:39:00Little_Applei can look into it
23:39:00raptorif you have a tiger disc, i suggest upgrading
23:39:00Little_Applecan the g3 even run tiger?
23:40:00raptoryes
23:40:00Little_Apple10.4?
23:40:00raptortiger = 10.4, correct
23:40:00Little_Applehmm...
23:40:00Little_Appleok
23:40:00Little_Appledo you have a mac?
23:40:00raptorI have one at work I play with
23:40:00Little_Appleok. cuz mac has ichat and ichat has screen sharing
23:40:00raptoryou have 'Panther'
23:41:00Little_Applemeep
23:41:00raptorwhich is 10.3
23:41:00Little_Applekrud
23:41:00Little_Applegim pretty sure we have tiger
23:41:00raptoryou'll have to upgrade
23:41:00raptoryou can boot from the tiger disc by holding 'c' when the computer starts up
23:42:00raptorif you have that disc..
23:42:00Little_Appleok. i might have it upgraded in the near future
23:42:00Little_Appleglion is commin out soon! :D
23:42:00Little_Apple*lion
23:43:00raptoryou cannot run anything past tiger on your machine..
23:43:00raptoron that one old PPC, i mean
23:43:00Little_Applei know dat :|
23:43:00Little_Applehow sad
23:43:00Little_Applebitfighter works perfectly on the g4
23:44:00Little_Appleno bugs that i know of... not including the voice chat issue
23:44:00raptorif you want perspective, tiger came out in 2005
23:44:00Little_Applek
23:44:00Little_Appleill have to ask my dad if we still have tiger
23:44:00Little_Applei think we do
23:45:00Little_Applei think i shal leave now
23:45:00raptorok
23:45:00raptorthanks for letting me diagnose
23:45:00Little_Appleg'bye
23:45:00raptorlater
23:45:00Little_Appleok.
23:45:00Little_Applebai
23:45:00Little_Apple Quit (Quit: Page closed)
23:45:00raptorwow, after all that and it wasn't even tiger..
23:45:00raptori'm glad i have that remote control client..
23:58:00karamazovapy Quit (Quit: Leaving)

Index Search ←Prev date Next date→

These logs were automatically created by BFLogBot on irc.freenode.net.