home home

downloads files

forum forum

docs docs

wiki wiki

faq faq

Cube & Cube 2 FORUM


General Thread

by Aardappel on 01/05/2002 01:55, 15527 messages, last message: 03/01/2024 13:02, 11395808 views, last view: 05/06/2024 17:04

for questions, announcements etc.

Go to first 20 messagesGo to previous 20 messages    Board Index    Go to next 20 messagesGo to last 20 messages

#9168: Re: Vista crash

by SheeEttin on 10/01/2007 01:29, refers to #9167

How are you trying to open it? The .bat in the the main folder (probably C:\Program Files\Sauerbaten\)?

reply to this message

#9169: Re: Vista crash

by Acord on 10/01/2007 02:21, refers to #9167

Try upgrading to windows 3.1 or MSDOS 6.0

reply to this message

#9170: Re: Vista crash

by SheeEttin on 10/01/2007 02:58, refers to #9169

C'mon, Acord, nobody's got the money for such high-end OSes! Only big corporations can afford that.

reply to this message

#9171: Re: Vista crash

by eihrul on 10/01/2007 03:01, refers to #9167

Read this thread and do what it says, except use the 32 bit processor link (ignore the 64 bit ones):
http://www.cubeengine.com/forum.php4?action=display_thread&thread_id=1516

reply to this message

#9172: ..

by makkE on 10/01/2007 09:31

Tentusa = Lavaball.

You are still too stupid to fake properly, Jean Pierre.

reply to this message

#9173: Message censored by administrator

by Tentusa. on 10/01/2007 12:15, refers to #9172

#9174: Re: abuse

by MeatROme on 10/01/2007 12:31, refers to #9173

You know what I'd like to be?
I mean if I had my goddam choice?

I'd just be the catcher in the rye and all.

reply to this message

#9175: Scripting help wanted

by N1NJ4 on 10/01/2007 13:20

Hello peeps, as usual I have questions about scripting in Sauerbraten. Firstly, can someone tell me what "bindvar" does? Secondly, I can't work out why the following code doesn't work. It creates a menu with a list of servers to connect to, but for some reason all the buttons connect to the last server... o_O:


favourite_servers = "action.us.to ga.wemew.com aus.wemew.com"
action.us.to_password = "apassword"
gen_serveritems = [
n = (listlen $arg1)
loop i $n [
sv = (at $arg1 $i)
aliasname = (concatword $sv _password)
password = (getalias $aliasname)
if (strcmp $password "") [
guibutton $sv (concat connect $sv)
][
guibutton $sv [echo concat $sv passwordis $password; serverpass = $password; connect $sv $password] "sauer"
]
]
]
newgui fave_servers [
guititle "Favourite servers"
gen_serveritems $favourite_servers
guibutton "Show master list.." "showgui servers"
]

reply to this message

#9176: Re: Scripting help wanted

by MeatROme on 10/01/2007 13:35, refers to #9175

bindvar is explained in the docs, it's for toggling 0|1 variables via a keypress, like "9" (number key) is for toggling thirdperson.

You need to "@"-ify your aliases inside a CubeScript block ... sometimes you can get away w/o doing it, since it's not overwritten inside the block .. this version should work as intended (although the servers didn't work for me at all)


_favsrv = "action.us.to ga.wemew.com aus.wemew.com"
_favsrv_action.us.to_password = "apassword"
gen_serveritems = [
loop i (listlen $arg1) [
sv = (at $arg1 $i)
password = (getalias (concatword _favsrv_ $sv _password))
if (strcmp $password "") [
guibutton @sv (concat connect @sv)

][
guibutton @sv [echo @@sv password is @password; serverpass = @@password; connect @@sv @password] "sauer"
]
]
]
newgui "Favourite Servers" [
guititle "Favourite servers"
gen_serveritems $favourite_servers
guibutton "Show master list.." "showgui servers"
]

favsrv = [showgui [Favourite Servers]]

reply to this message

#9177: Re: Scripting help wanted

by Drakas on 10/01/2007 13:55, refers to #9176

Ah, I seem to have forgotten to update the nameservers :P

reply to this message

#9178: Re: Scripting help wanted

by MeatROme on 10/01/2007 14:05, refers to #9177

heh :-P

BTW - whatever is the 2nd argument to "connect" supposed to do - anyway, missed an @ there myself!

reply to this message

#9179: Re: Scripting help wanted

by MeatROme on 10/01/2007 14:06, refers to #9178

guibutton (concat @sv "[" @password "]") [serverpass = @@password; connect @@sv] "server"

reply to this message

#9180: Re: ..

by shadow,516 on 10/01/2007 23:39, refers to #9172

OMG, JP's back?

Damn, I thought he would have grown up by now. I guess some things NEVER change (including his IP, apparently).

reply to this message

#9181: Scripting help

by Roomon1 on 10/02/2007 05:18

Hey all!
I've been working with the Cube engine for a couple months now, and I recently got some friends interested in it too. Now they want me to set up a server that we can play on. This isn't too hard, but I'm trying to find a way to set up a script that'll act based on their nicknames. Like if one person claims master but another more responsible player comes on then the new player could take master w/o the admin password. Long story short, I can look at all the connections the server has (0, 1, 2, 3, etc. like w/ master status) but I don't know how to get the player's nicknames or IP addresses or anything like that in the script. Can anyone help me out a bit? Thanks!

reply to this message

#9182: Help with Cube 2 on early imac

by Jotokun on 10/02/2007 07:22

I'm asking for help with Cube 2 on the original Rev.A imac(233mhz, 160mb ram). I can start cube 2, and it seems to completly load. I can hear the background music, and a tiny bit of the rendered enviornment(althogh it doesnt change when I move the mouse), and right as it finishes loading a level, it crashes. I dont know how to get this running. Can anyone help?

reply to this message

#9183: Re: Help with Cube 2 on early imac

by Drakas on 10/02/2007 08:53, refers to #9182

Your Mac is kind of old...
Check http://cube.wikispaces.com/Beginners+Guide
and
http://cube.wikispaces.com/Performance+Guide

reply to this message

#9184: Re: Help with Cube 2 on early imac

by a baby rabbit on 10/02/2007 11:52, refers to #9182

If you're on a mac and it crashes, i.e. generates a crash report, then please send or provide a link to the report.

reply to this message

#9185: Re: Help with Cube 2 on early imac

by Jotokun on 10/03/2007 00:06, refers to #9184

I know its an old imac, but I thought cube was supposed to run well on old hardware. I didnt realize that GeForce 4 was low end. I thought that it was mid-ground. Anyway, the crash report.

Date/Time: 2007-10-02 15:02:03 -0700
OS Version: 10.3.9 (Build 7W98)
Report Version: 2

Command: sauerbraten
Path: /Applications/Cube 2/sauerbraten/sauerbraten.app/Contents/MacOS/sauerbraten
Version: Sauerbraten 2007-08-22 (1.0)
PID: 376
Thread: 0

Exception: EXC_BAD_ACCESS (0x0001)
Codes: KERN_PROTECTION_FAILURE (0x0002) at 0x0000058c

Thread 0 Crashed:
0 GLRasterRGB555A8D16 0x0458c10c glrSetFunctions + 0x4d6a0
1 GLDriver 0x017cf448 gldFreeVertexBuffer + 0xa59c
2 GLDriver 0x017c3020 gldDestroyShared + 0xcb8
3 GLEngine 0x043e8738 0x4339000 + 0xaf738
4 GLEngine 0x043480d8 0x4339000 + 0xf0d8
5 ??? 0x00042d54 0x1000 + 0x41d54
6 ??? 0x00044264 0x1000 + 0x43264
7 ??? 0x000447c0 0x1000 + 0x437c0
8 ??? 0x000d1190 0x1000 + 0xd0190
9 ??? 0x0003e8ec 0x1000 + 0x3d8ec
10 ??? 0x00017ed4 0x1000 + 0x16ed4
11 ??? 0x00004748 0x1000 + 0x3748
12 com.apple.Foundation 0x90a2799c _nsnote_callback + 0xb0
13 com.apple.CoreFoundation 0x901db118 __CFXNotificationPost + 0x1b4
14 com.apple.CoreFoundation 0x901dfb7c _CFXNotificationPostNotification + 0x340
15 com.apple.Foundation 0x90a257e8 -[NSNotificationCenter postNotificationName:object:userInfo:] + 0x74
16 com.apple.AppKit 0x92f93328 -[NSApplication _postDidFinishNotification] + 0x70
17 com.apple.AppKit 0x92f93214 -[NSApplication _sendFinishLaunchingNotification] + 0x5c
18 com.apple.AppKit 0x92f93444 -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 0x78
19 com.apple.Foundation 0x90a7ae28 -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 0x164
20 com.apple.Foundation 0x90a816c0 _NSAppleEventManagerGenericHandler + 0x78
21 com.apple.AE 0x916f4a10 _Z20aeDispatchAppleEventPK6AEDescPS_mPh + 0xd0
22 com.apple.AE 0x916f7858 _Z25dispatchEventAndSendReplyPK6AEDescPS_ + 0x2c
23 com.apple.AE 0x916f4c50 aeProcessAppleEvent + 0x11c
24 com.apple.HIToolbox 0x92975224 AEProcessAppleEvent + 0x3c
25 com.apple.AppKit 0x92e82420 _DPSNextEvent + 0x358
26 com.apple.AppKit 0x92e98cc8 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 0x74
27 com.apple.AppKit 0x92ead048 -[NSApplication run] + 0x21c
28 ??? 0x00004d98 0x1000 + 0x3d98
29 ??? 0x00003070 0x1000 + 0x2070
30 ??? 0x00002d74 0x1000 + 0x1d74

Thread 1:
0 libSystem.B.dylib 0x900127c8 clock_sleep_trap + 0x8
1 libSystem.B.dylib 0x9000d9b8 nanosleep + 0x78
2 SDL 0x30039fdc SDL_SYS_StopTimer + 0x8c
3 SDL 0x3002bf60 SDL_RunThread + 0x48
4 SDL 0x30039d00 SDL_SYS_KillThread + 0x18
5 libSystem.B.dylib 0x90024930 _pthread_body + 0x28

Thread 2:
0 libSystem.B.dylib 0x90007878 mach_msg_trap + 0x8
1 libSystem.B.dylib 0x900073f8 mach_msg + 0x38
2 com.apple.CoreFoundation 0x901c2258 __CFRunLoopRun + 0x350
3 com.apple.CoreFoundation 0x901c69e4 CFRunLoopRunSpecific + 0x148
4 com.apple.audio.CoreAudio 0x90762f80 _ZN10HALRunLoop9OwnThreadEPv + 0x104
5 com.apple.audio.CoreAudio 0x907691e0 _ZN9CAPThread5EntryEPS_ + 0x30
6 libSystem.B.dylib 0x90024930 _pthread_body + 0x28

Thread 3:
0 libSystem.B.dylib 0x90018e38 semaphore_timedwait_signal_trap + 0x8
1 libSystem.B.dylib 0x9000e9d4 _pthread_cond_wait + 0x268
2 com.apple.audio.CoreAudio 0x907544fc _ZN7CAGuard7WaitForEy + 0xdc
3 com.apple.audio.CoreAudio 0x90754130 _ZN7CAGuard9WaitUntilEy + 0x130
4 com.apple.audio.CoreAudio 0x90752b20 _ZN10HPIOThread8WorkLoopEv + 0x358
5 com.apple.audio.CoreAudio 0x9076919c _ZN10HPIOThread11ThreadEntryEPS_ + 0x1c
6 com.apple.audio.CoreAudio 0x907691e0 _ZN9CAPThread5EntryEPS_ + 0x30
7 libSystem.B.dylib 0x90024930 _pthread_body + 0x28

PPC Thread State:
srr0: 0x0458c10c srr1: 0x0000f930 vrsave: 0x00000000
cr: 0x42402222 xer: 0x20000000 lr: 0x0458c0d0 ctr: 0x0458c0b8
r0: 0x00000000 r1: 0xbfffd8a0 r2: 0x00000000 r3: 0x01852600
r4: 0x004e7630 r5: 0xbfffdaa0 r6: 0x00000000 r7: 0x01852cd4
r8: 0x00000002 r9: 0x00000000 r10: 0x000001f8 r11: 0xbfffdca8
r12: 0x0458c0b8 r13: 0xbfffdaa0 r14: 0x00000000 r15: 0x00100000
r16: 0x00100000 r17: 0xbfffe318 r18: 0x00000004 r19: 0x43300000
r20: 0x00000002 r21: 0x00000002 r22: 0x00000000 r23: 0x017fa220
r24: 0x004e7630 r25: 0x01852600 r26: 0x00000001 r27: 0x0000d758
r28: 0x017fa320 r29: 0x017fa220 r30: 0x017fa420 r31: 0x0458c0d0

Binary Images Description:
0x1000 - 0xf9fff ??? Sauerbraten 2007-08-22 (1.0) /Applications/Cube 2/sauerbraten/sauerbraten.app/Contents/MacOS/sauerbraten
0x17c0000 - 0x17d9fff GLDriver /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLDriver.bundle/GLDriver
0x4339000 - 0x442efff GLEngine /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
0x443a000 - 0x4454fff GLRendererFloat /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloat.bundle/GLRendererFloat
0x4501000 - 0x459ffff GLRasterRGB555A8D16 /System/Library/Frameworks/OpenGL.framework/Resources/GLRasterRGB555A8D16.bundle/GLRasterRGB555A8D16
0x45f5000 - 0x45f6fff com.apple.aoa.halplugin 2.5.0 /System/Library/Extensions/IOAudioFamily.kext/Contents/PlugIns/AOAHALPlugin.bundle/Contents/MacOS/AOAHALPlugin
0x5181000 - 0x5224fff com.apple.audio.units.Components 1.3.2 /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
0x5242000 - 0x527dfff com.apple.iSightAudio 6.4 /Library/Audio/Plug-Ins/HAL/iSightAudio.plugin/Contents/MacOS/iSightAudio
0x30000000 - 0x30060fff SDL 1.2.9 (1.2.10) /Applications/Cube 2/sauerbraten/sauerbraten.app/Contents/MacOS/../Frameworks/SDL.framework/Versions/A/SDL
0x31000000 - 0x31028fff SDL_image 1.2.3 /Applications/Cube 2/sauerbraten/sauerbraten.app/Contents/MacOS/../Frameworks/SDL_image.framework/Versions/A/SDL_image
0x32000000 - 0x32085fff SDL_mixer 1.2.5 /Applications/Cube 2/sauerbraten/sauerbraten.app/Contents/MacOS/../Frameworks/SDL_mixer.framework/Versions/A/SDL_mixer
0x73230000 - 0x73233fff libmx.A.dylib /usr/lib/libmx.A.dylib
0x80830000 - 0x8090efff libxml2.2.dylib /usr/lib/libxml2.2.dylib
0x80a50000 - 0x80ad4fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
0x80c80000 - 0x80c88fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
0x811db000 - 0x812ccfff libGLProgrammability.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dylib
0x8c280000 - 0x8c281fff libGLSystem.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLSystem.dylib
0x8fe00000 - 0x8fe4ffff dyld /usr/lib/dyld
0x90000000 - 0x9014ffff libSystem.B.dylib /usr/lib/libSystem.B.dylib
0x901c0000 - 0x9026efff com.apple.CoreFoundation 6.3.9 (299.37) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x902b0000 - 0x90529fff com.apple.CoreServices.CarbonCore 10.3.9 (558) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
0x905a0000 - 0x90610fff com.apple.framework.IOKit 1.3.6 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x90640000 - 0x906c8fff com.apple.CoreServices.OSServices 3.0.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
0x9071d000 - 0x9072afff com.apple.CommonPanels 1.2.1 (1.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
0x90733000 - 0x90746fff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
0x90750000 - 0x907b7fff com.apple.audio.CoreAudio 2.1.2 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
0x90810000 - 0x90810fff com.apple.ApplicationServices 1.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
0x90860000 - 0x908cffff libobjc.A.dylib /usr/lib/libobjc.A.dylib
0x90940000 - 0x909b3fff com.apple.DesktopServices 1.2.6 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
0x90a02000 - 0x90a0dfff com.apple.securityhi 1.2 (90) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
0x90a20000 - 0x90b7bfff com.apple.Foundation 6.3.10 (500.63) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
0x90c70000 - 0x90c8afff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
0x90cb0000 - 0x90d12fff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
0x90d40000 - 0x90d40fff com.apple.Carbon 10.3 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
0x90d50000 - 0x90d6bfff com.apple.SystemConfiguration 1.7.1 (???) /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
0x90d7c000 - 0x90d8ffff com.apple.speech.synthesis.framework 3.2 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
0x90db0000 - 0x90dbbfff com.apple.opengl 1.3.8 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
0x90ec0000 - 0x90ec0fff com.apple.Cocoa 6.3 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
0x9102d000 - 0x91045fff com.apple.WebServices 1.1.1 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServicesCore.framework/Versions/A/WebServicesCore
0x910e0000 - 0x91134fff com.apple.bom 1.2.8 (64.2) /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
0x91141000 - 0x91141fff com.apple.CoreServices 10.3 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
0x91242000 - 0x9124bfff com.apple.DiskArbitration 2.0.5 /System/Library/PrivateFrameworks/DiskArbitration.framework/Versions/A/DiskArbitration
0x912e0000 - 0x912f7fff com.apple.LangAnalysis 1.5.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
0x913a0000 - 0x9145ffff ColorSync /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync
0x914ad000 - 0x91574fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
0x915e0000 - 0x91699fff com.apple.QD 3.4.74 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
0x916f0000 - 0x91728fff com.apple.AE 1.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
0x91760000 - 0x917f3fff com.apple.print.framework.PrintCore 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
0x91890000 - 0x918aafff com.apple.openscripting 1.2.1 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
0x918d0000 - 0x918e0fff com.apple.ImageCapture 2.1.5 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
0x91970000 - 0x919befff com.apple.print.framework.Print 3.3 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
0x91a40000 - 0x91ab3fff com.apple.NavigationServices 3.3.3 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.framework/Versions/A/NavigationServices
0x91b10000 - 0x91b10fff com.apple.audio.units.AudioUnit 1.3.2 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
0x91b30000 - 0x91b44fff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
0x91b60000 - 0x91b6bfff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
0x91b71000 - 0x91b8bfff libPDFRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libPDFRIP.A.dylib
0x91bb0000 - 0x91d3cfff com.apple.QuickTime 6.4.0 /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
0x92070000 - 0x92096fff com.apple.FindByContent 1.4 (1.2) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/FindByContent.framework/Versions/A/FindByContent
0x920a9000 - 0x920e1fff com.apple.LaunchServices 10.3.5 (98.4) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
0x92170000 - 0x92358fff com.apple.security 2.5 (29780) /System/Library/Frameworks/Security.framework/Versions/A/Security
0x927f0000 - 0x92827fff com.apple.CFNetwork 1.2.6 (71.13) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
0x92880000 - 0x92c05fff com.apple.HIToolbox 1.3.7 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
0x92de0000 - 0x92e30fff com.apple.HIServices 1.4.1 (0.0.1d1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
0x92e70000 - 0x9336ffff com.apple.AppKit 6.3.11 (743.43) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
0x9366d000 - 0x93945fff com.apple.CoreGraphics 1.203.33 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
0x939d0000 - 0x939d4fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
0x93a50000 - 0x93a64fff libcups.2.dylib /usr/lib/libcups.2.dylib
0x93a6a000 - 0x93a84fff libresolv.9.dylib /usr/lib/libresolv.9.dylib
0x93c00000 - 0x93ca3fff com.apple.audio.toolbox.AudioToolbox 1.3.2 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
0x941cd000 - 0x94259fff com.apple.ink.framework 101.1.4 (55.12) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
0x9438a000 - 0x943a7fff com.apple.audio.SoundManager 3.8 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/Versions/A/CarbonSound
0x94580000 - 0x9458cfff com.apple.help 1.0.1 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
0x94596000 - 0x945a5fff libPSRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libPSRIP.A.dylib
0x945b0000 - 0x945b9fff libz.1.dylib /usr/lib/libz.1.dylib
0x94650000 - 0x946affff com.apple.SearchKit 1.0.2 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
0x946ed000 - 0x946fdfff com.apple.speech.recognition.framework 3.3 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
0x954c0000 - 0x95ac6fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
0x95b20000 - 0x95df0fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
0x95f00000 - 0x95f20fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
0x968d0000 - 0x969b2fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
0x96a04000 - 0x96a6dfff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering.framework/Versions/A/HTMLRendering
0x96aa0000 - 0x96acefff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
0x96b50000 - 0x96bdffff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
0x96cb0000 - 0x96d9efff libiconv.2.dylib /usr/lib/libiconv.2.dylib
0x96de0000 - 0x96df0fff com.apple.vecLib 3.0.3 (vecLib 3.0.3) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
0x96ee0000 - 0x96ee8fff libbsm.dylib /usr/lib/libbsm.dylib
0x97280000 - 0x972cbfff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
0x97345000 - 0x973b2fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib

reply to this message

#9186: Message censored by administrator

by ATIRULE on 10/03/2007 05:34

#9187: ..

by SanHolo on 10/04/2007 09:44

233 MHz G3? Forget it, I have an old G4 350 MHz with 780 MB RAM and an ATI Rage - I get 1-4 frames per second.

reply to this message

Go to first 20 messagesGo to previous 20 messages    Board Index    Go to next 20 messagesGo to last 20 messages


Post a Message

Username

Email

Subject

Body

9 multiplied by 5 is?


content by Aardappel & eihrul © 2001-2024
website by SleepwalkR © 2001-2024
53897245 visitors requested 71672651 pages
page created in 0.190 seconds using 10 queries
hosted by Boost Digital