Plazma Being

Show off your games, demos and other (playable) creations.
User avatar
felix24
Party member
Posts: 163
Joined: Tue Jul 26, 2011 4:51 pm
Contact:

Re: Plazma Being (Beta)

Post by felix24 »

hey all,
so i've uploaded a .love version of the current beta. i'm not going to release the game on mac or linux for a while or maybe not at all, i'll see how things go. but if you are not a windows user and want to give the game a go anyway while it's in beta, give me a pm and i'll send you the link to the download for the .love file :)
thanks!
LuaWeaver
Party member
Posts: 183
Joined: Wed Mar 02, 2011 11:15 pm
Location: Ohio, USA

Re: Plazma Being (Beta)

Post by LuaWeaver »

I managed to extract the .love from the .exe, and looked at some of your code. I noticed a line that slightly annoyed me, something like this:

{"O","h",","," ","n","o"...

I see why you would do that, but I think it would be better to define a function like this:

function string2chararray(str)
local rTab={}
for char in str:gmatch(".") do
table.insert(rTab,char)
end
return rTab
end

And use this instead of the table like this:

string2chararray("Oh no, Zeb does not have enough energy to recharge!")

EDIT : Not telling you how to write your games, it's just a tip to save time in the process of coding the game and make it more readable later, in case you need to modify it. Not trying to be rude.

By the way, to protect your source, you should compile rather than just merge. It was easy to get the .zip.
"your actions cause me to infer your ego is the size of three houses" -finley
User avatar
Robin
The Omniscient
Posts: 6506
Joined: Fri Feb 20, 2009 4:29 pm
Location: The Netherlands
Contact:

Re: Plazma Being (Beta)

Post by Robin »

LuaWeaver wrote:function string2chararray(str)
local rTab={}
for char in str:gmatch(".") do
table.insert(rTab,char)
end
return rTab
end
I suggest this version:

Code: Select all

function string2chararray(str)
   local rTab, i = {}, 1
   for char in str:gmatch(".") do
      rTab[i] = char
      i = i + 1
   end
   return rTab
end
LuaWeaver wrote:By the way, to protect your source, you should compile rather than just merge. It was easy to get the .zip.
  • What is this I don't even.
  • I am not able rightly to apprehend the kind of confusion of ideas that could provoke such a suggestion.
Help us help you: attach a .love.
User avatar
MZ|One
Citizen
Posts: 52
Joined: Tue May 22, 2012 8:37 am

Re: Plazma Being (Beta)

Post by MZ|One »

Hey man, I like the idea and the visual atmosphere, well done. I have to agree with what someone said earlier however, that it was sometimes difficult or frustrating to execute the solution even once I figured out what to do. For example, when I need to catch a block mid-air in the blue form, currently I have to click exactly on it, which can be a little difficult since it is flying fast due to the explosion. If I would be able to catch the block just by moving the cursor over it with the LMB held down, that would be much easier.

Also, maybe ditch the cooldown on the shot - sometimes when I knew that I misfired the first shot, I immediately clicked the button again to start charging up another one, and did not understand why it does not work. There's no reason for the cooldown, I think?

Anyway, my two cents. Overall, it's a nice and well-executed idea, keep it up and it will be a nice one to play.
User avatar
felix24
Party member
Posts: 163
Joined: Tue Jul 26, 2011 4:51 pm
Contact:

Re: Plazma Being (Beta)

Post by felix24 »

LuaWeaver wrote: EDIT : Not telling you how to write your games, it's just a tip to save time in the process of coding the game and make it more readable later, in case you need to modify it. Not trying to be rude.
no worries at all man ^^ . i tend to come up with clunky solutions when i program and then just leave them if they work ok. it's what happens when i code on a project by myself ;)
MZ|One wrote:Hey man, I like the idea and the visual atmosphere, well done. I have to agree with what someone said earlier however, that it was sometimes difficult or frustrating to execute the solution even once I figured out what to do. For example, when I need to catch a block mid-air in the blue form, currently I have to click exactly on it, which can be a little difficult since it is flying fast due to the explosion. If I would be able to catch the block just by moving the cursor over it with the LMB held down, that would be much easier.

Also, maybe ditch the cooldown on the shot - sometimes when I knew that I misfired the first shot, I immediately clicked the button again to start charging up another one, and did not understand why it does not work. There's no reason for the cooldown, I think?

Anyway, my two cents. Overall, it's a nice and well-executed idea, keep it up and it will be a nice one to play.
thanks man :) . you can actually catch/pick up objects by moving the mouse over them while holding left click. i'll look into getting rid of the cooldown. no one else said anything yet but maybe they were just being polite ;)

thanks for the tip Robin :awesome:
User avatar
Nixola
Inner party member
Posts: 1949
Joined: Tue Dec 06, 2011 7:11 pm
Location: Italy

Re: Plazma Being (Beta)

Post by Nixola »

I can't set 'e' as a key for anything inside the game

EDIT: If I use different keys to change form (e.g. 1 and 2) I can use forms I can't use yet with wheelup and wheeldown, like a purple form very similar to the green one (I didn't find any difference yet), and anyway it messes things up (I get the cursor to move things with the red form, with the ability to know what to do with objects but without being able to interact with them)
lf = love.filesystem
ls = love.sound
la = love.audio
lp = love.physics
lt = love.thread
li = love.image
lg = love.graphics
User avatar
felix24
Party member
Posts: 163
Joined: Tue Jul 26, 2011 4:51 pm
Contact:

Re: Plazma Being (Beta)

Post by felix24 »

Nixola wrote:I can't set 'e' as a key for anything inside the game

EDIT: If I use different keys to change form (e.g. 1 and 2) I can use forms I can't use yet with wheelup and wheeldown, like a purple form very similar to the green one (I didn't find any difference yet), and anyway it messes things up (I get the cursor to move things with the red form, with the ability to know what to do with objects but without being able to interact with them)
hey man thanks for the bug reports. i fixed those up this evening and tomorrow i'll upload a new version again. thanks for your help ^^
User avatar
Jasoco
Inner party member
Posts: 3725
Joined: Mon Jun 22, 2009 9:35 am
Location: Pennsylvania, USA
Contact:

Re: Plazma Being (Beta)

Post by Jasoco »

Hey Felix, I just got around to testing it out in both OS X and Windows and I am actually getting a crash on both systems. It never actually runs. Löve's GUI never gets a chance to appear. Something is causing a crash at the lowest level possible before the engine can even start and I don't know what it is.

Bottom line, Mac and Linux support is not your problem (You should not be denying Mac or Linux users from wanting to try the game as it's clearly not the problem) it's something else.

I think you're going to have to get some of the more technical Löve developers in here to figure out what is going on. Since you won't offer the .love to everyone, and that's your decision, maybe some of them can request a demo themselves.

I looked through your code and didn't really see anything that stood out and said "I'm the problem!" because it all looked like a normal Löve project. So I'm stumped. I bet it's something really silly. But it could be anything.

I tested it in Löve 0.7.2, and both 0.8.0 and LuaJIT 0.8.0. On both OS X and Windows. Windows' error was not as detailed as OS X's.

The following is the OS X error message when using Developer mode:

Code: Select all

Process:         love [8859]
Path:            /Users/USER/Documents/*/love.app/Contents/MacOS/love
Identifier:      org.love2d.love
Version:         0.8.0 LuaJIT (???)
Code Type:       X86-64 (Native)
Parent Process:  launchd [279]
User ID:         501

Date/Time:       2012-12-02 18:50:33.499 -0500
OS Version:      Mac OS X 10.8.2 (12C3006)
Report Version:  10

Interval Since Last Report:          269701 sec
Crashes Since Last Report:           19
Per-App Crashes Since Last Report:   3
Anonymous UUID:                      CBC14009-3BA2-A788-05AB-C1B4868C4097

Crashed Thread:  0  Dispatch queue: com.apple.main-thread

Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000000

VM Regions Near 0:
--> 
    __TEXT                 0000000000010000-0000000000119000 [ 1060K] r-x/rwx SM=COW  /Users/USER/Documents/*/love.app/Contents/MacOS/love

Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
0   libGL.dylib                   	0x00007fff87fbdbc1 glClearColor + 13
1   org.love2d.love               	0x0000000000052518 0x10000 + 271640
2   libluajit.dylib               	0x00007fff04c4c5f3 0x7fff04c4a000 + 9715
3   org.love2d.love               	0x0000000000011a79 0x10000 + 6777
4   org.love2d.love               	0x0000000000066ab3 0x10000 + 354995
5   com.apple.CoreFoundation      	0x00007fff9100e47a _CFXNotificationPost + 2554
6   com.apple.Foundation          	0x00007fff8f1cc846 -[NSNotificationCenter postNotificationName:object:userInfo:] + 64
7   com.apple.AppKit              	0x00007fff8890960d -[NSApplication _postDidFinishNotification] + 292
8   com.apple.AppKit              	0x00007fff88909346 -[NSApplication _sendFinishLaunchingNotification] + 216
9   com.apple.AppKit              	0x00007fff88b55146 -[NSApplication(NSAppleEventHandling) _handleAEOpenDocumentsForURLs:] + 356
10  com.apple.AppKit              	0x00007fff88906114 -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 327
11  com.apple.Foundation          	0x00007fff8f1e612b -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 308
12  com.apple.Foundation          	0x00007fff8f1e5f8d _NSAppleEventManagerGenericHandler + 106
13  com.apple.AE                  	0x00007fff8e656b48 aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned int, unsigned char*) + 307
14  com.apple.AE                  	0x00007fff8e6569a9 dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 37
15  com.apple.AE                  	0x00007fff8e656869 aeProcessAppleEvent + 318
16  com.apple.HIToolbox           	0x00007fff8c24f8e9 AEProcessAppleEvent + 100
17  com.apple.AppKit              	0x00007fff88902916 _DPSNextEvent + 1456
18  com.apple.AppKit              	0x00007fff88901ed2 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
19  com.apple.AppKit              	0x00007fff888f9283 -[NSApplication run] + 517
20  org.love2d.love               	0x000000000006726d 0x10000 + 356973
21  org.love2d.love               	0x0000000000011754 0x10000 + 5972

Thread 1:
0   libsystem_kernel.dylib        	0x00007fff8fbd96d6 __workq_kernreturn + 10
1   libsystem_c.dylib             	0x00007fff8fb10eec _pthread_workq_return + 25
2   libsystem_c.dylib             	0x00007fff8fb10cb3 _pthread_wqthread + 412
3   libsystem_c.dylib             	0x00007fff8fafb171 start_wqthread + 13

Thread 2:: Dispatch queue: com.apple.libdispatch-manager
0   libsystem_kernel.dylib        	0x00007fff8fbd9d16 kevent + 10
1   libdispatch.dylib             	0x00007fff8aab9dea _dispatch_mgr_invoke + 883
2   libdispatch.dylib             	0x00007fff8aab99ee _dispatch_mgr_thread + 54

Thread 3:
0   libsystem_kernel.dylib        	0x00007fff8fbd96d6 __workq_kernreturn + 10
1   libsystem_c.dylib             	0x00007fff8fb10eec _pthread_workq_return + 25
2   libsystem_c.dylib             	0x00007fff8fb10cb3 _pthread_wqthread + 412
3   libsystem_c.dylib             	0x00007fff8fafb171 start_wqthread + 13

Thread 4:: Dispatch queue: com.apple.root.default-priority
0   libsystem_kernel.dylib        	0x00007fff8fbd9122 __psynch_mutexwait + 10
1   libsystem_c.dylib             	0x00007fff8fb13d9d pthread_mutex_lock + 536
2   com.apple.Foundation          	0x00007fff8f1d66ae -[NSLock lock] + 148
3   com.apple.AppKit              	0x00007fff88ae8c87 __37-[NSUIHeartBeat updateHeartBeatState]_block_invoke_0122 + 52
4   com.apple.Foundation          	0x00007fff8f23ca7c -[NSBlockOperation main] + 124
5   com.apple.Foundation          	0x00007fff8f212986 -[__NSOperationInternal start] + 684
6   com.apple.Foundation          	0x00007fff8f21a1a1 __block_global_6 + 129
7   libdispatch.dylib             	0x00007fff8aabaf01 _dispatch_call_block_and_release + 15
8   libdispatch.dylib             	0x00007fff8aab70b6 _dispatch_client_callout + 8
9   libdispatch.dylib             	0x00007fff8aab81fa _dispatch_worker_thread2 + 304
10  libsystem_c.dylib             	0x00007fff8fb10cab _pthread_wqthread + 404
11  libsystem_c.dylib             	0x00007fff8fafb171 start_wqthread + 13

Thread 5:: com.apple.appkit-heartbeat
0   libsystem_kernel.dylib        	0x00007fff8fbd9386 __semwait_signal + 10
1   libsystem_c.dylib             	0x00007fff8fb98800 nanosleep + 163
2   libsystem_c.dylib             	0x00007fff8fb98717 usleep + 54
3   com.apple.AppKit              	0x00007fff88ae7958 -[NSUIHeartBeat _heartBeatThread:] + 543
4   com.apple.Foundation          	0x00007fff8f219612 __NSThread__main__ + 1345
5   libsystem_c.dylib             	0x00007fff8fb0e742 _pthread_start + 327
6   libsystem_c.dylib             	0x00007fff8fafb181 thread_start + 13

Thread 6:
0   libsystem_kernel.dylib        	0x00007fff8fbd96d6 __workq_kernreturn + 10
1   libsystem_c.dylib             	0x00007fff8fb10eec _pthread_workq_return + 25
2   libsystem_c.dylib             	0x00007fff8fb10cb3 _pthread_wqthread + 412
3   libsystem_c.dylib             	0x00007fff8fafb171 start_wqthread + 13

Thread 7:
0   libsystem_kernel.dylib        	0x00007fff8fbd9386 __semwait_signal + 10
1   libsystem_c.dylib             	0x00007fff8fb98800 nanosleep + 163
2   SDL                           	0x000000000069caa6 SDL_Delay + 92
3   SDL                           	0x000000000069cb1f 0x66e000 + 191263
4   SDL                           	0x000000000069131a 0x66e000 + 144154
5   SDL                           	0x000000000069c967 0x66e000 + 190823
6   libsystem_c.dylib             	0x00007fff8fb0e742 _pthread_start + 327
7   libsystem_c.dylib             	0x00007fff8fafb181 thread_start + 13

Thread 8:: com.apple.audio.IOThread.client
0   libsystem_kernel.dylib        	0x00007fff8fbd7686 mach_msg_trap + 10
1   libsystem_kernel.dylib        	0x00007fff8fbd6c42 mach_msg + 70
2   com.apple.audio.CoreAudio     	0x00007fff8fec7692 HALC_IOContext_Start + 116
3   com.apple.audio.CoreAudio     	0x00007fff8fec6554 HALC_ProxyIOContext::IOWorkLoop() + 306
4   com.apple.audio.CoreAudio     	0x00007fff8fec6391 HALC_ProxyIOContext::IOThreadEntry(void*) + 83
5   com.apple.audio.CoreAudio     	0x00007fff8fec624b HALB_IOThread::Entry(void*) + 75
6   libsystem_c.dylib             	0x00007fff8fb0e742 _pthread_start + 327
7   libsystem_c.dylib             	0x00007fff8fafb181 thread_start + 13

Thread 9:
0   libsystem_kernel.dylib        	0x00007fff8fbd9386 __semwait_signal + 10
1   libsystem_c.dylib             	0x00007fff8fb98800 nanosleep + 163
2   SDL                           	0x000000000069caa6 SDL_Delay + 92
3   org.love2d.love               	0x000000000001f6ee 0x10000 + 63214
4   org.love2d.love               	0x000000000006e745 0x10000 + 386885
5   SDL                           	0x000000000069131a 0x66e000 + 144154
6   SDL                           	0x000000000069c967 0x66e000 + 190823
7   libsystem_c.dylib             	0x00007fff8fb0e742 _pthread_start + 327
8   libsystem_c.dylib             	0x00007fff8fafb181 thread_start + 13

Thread 10:

Thread 0 crashed with X86 Thread State (64-bit):
  rax: 0x0000000000000000  rbx: 0x0000000000f9d378  rcx: 0x00000000ffffffff  rdx: 0x00000000000000ff
  rdi: 0x00000000009b0170  rsi: 0x00007fff5fbfef80  rbp: 0x00007fff5fbfef70  rsp: 0x00007fff5fbfef70
   r8: 0x0000000000012068   r9: 0x00007fff5fbfeea0  r10: 0x00007fff94b9026b  r11: 0x00007fff87fbdbb4
  r12: 0x0000000000f9d378  r13: 0x0000000000000000  r14: 0x0000000000f9df60  r15: 0x00000000000523b4
  rip: 0x00007fff87fbdbc1  rfl: 0x0000000000010206  cr2: 0x0000000000000000
Logical CPU: 0

Binary Images:
           0x10000 -           0x118ff7 +org.love2d.love (0.8.0 LuaJIT - ???) <57F83142-CE99-31C3-AD57-570AFAEAE2DE> /Users/USER/Documents/*/love.app/Contents/MacOS/love
          0x144000 -           0x202fe7 +com.yourcompany.IL (1.0 - 1) <252183F9-B853-3F05-802E-DAE8F7D2C690> /Users/USER/Documents/*/love.app/Contents/Frameworks/IL.framework/Versions/A/IL
          0x2cb000 -           0x56efef +org.xiph.vorbis (1.2.3 - 1.2.3) <21CC1C7C-71E8-3028-897D-9FB14D46C3E0> /Users/USER/Documents/*/love.app/Contents/Frameworks/Vorbis.framework/Versions/A/Vorbis
          0x5a2000 -           0x5cdfff  com.apple.audio.OpenAL (1.6 - 1.6) <0FBA7491-B817-39EE-8898-FF88C9485B50> /System/Library/Frameworks/OpenAL.framework/Versions/A/OpenAL
          0x5de000 -           0x662ff7 +org.freetype.FreeType (2.4.3 - 243) <CA9CDEEB-E0F5-3B5C-A6E0-0BBB23576740> /Users/USER/Documents/*/love.app/Contents/Frameworks/FreeType.framework/Versions/A/FreeType
          0x66e000 -           0x6c5fff +SDL (1.2.14 - 1.2.14) <C726704D-C3D9-37D1-800E-9D92D9870EAE> /Users/USER/Documents/*/love.app/Contents/Frameworks/SDL.framework/Versions/A/SDL
          0x6d8000 -           0x6dcff7 +org.xiph.ogg (1.1.4 - 1.1.4) <16DC9A37-FD40-383D-8509-31581329BB4F> /Users/USER/Documents/*/love.app/Contents/Frameworks/Ogg.framework/Versions/A/Ogg
          0x6df000 -           0x6fffff +org.icculus.physfs (1.0 - 1) <DD3063E2-3478-33CE-BCC5-87857EA6DD84> /Users/USER/Documents/*/love.app/Contents/Frameworks/physfs.framework/Versions/A/physfs
          0x709000 -           0x748ff7 +net.sourceforge.libmodplug (1.0 - 1) <AF1BB950-8E55-3D7A-89BC-44D24217A325> /Users/USER/Documents/*/love.app/Contents/Frameworks/libmodplug.framework/Versions/A/libmodplug
          0x7d6000 -           0x81cfe7 +mpg123 (30.6) <BECBE914-3AFF-3F25-AFCF-8513542E819E> /Users/USER/Documents/*/love.app/Contents/Frameworks/mpg123.framework/Versions/A/mpg123
          0xfe7000 -           0xfecfff  com.apple.audio.AppleHDAHALPlugIn (2.3.5 - 2.3.5fc10) <E59FF48E-1D49-3125-A97B-3DB084511EF0> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Contents/MacOS/AppleHDAHALPlugIn
        0x70000000 -         0x70154fff  com.apple.audio.units.Components (1.8 - 1.8) <7846E0A3-4AFB-3E29-96D3-BF87348024ED> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x7fff04c4a000 -     0x7fff04cb1ff7 +libluajit.dylib (2) <F5FC5FF8-4DBB-39C4-9D5F-6EAB7749D819> /Users/USER/Documents/*/love.app/Contents/Frameworks/libluajit.dylib
    0x7fff699ff000 -     0x7fff69a3393f  dyld (210.2.3) <A40597AA-5529-3337-8C09-D8A014EB1578> /usr/lib/dyld
    0x7fff879db000 -     0x7fff879e2fff  libcopyfile.dylib (89) <876573D0-E907-3566-A108-577EAD1B6182> /usr/lib/system/libcopyfile.dylib
    0x7fff87a6e000 -     0x7fff87abdff7  libFontRegistry.dylib (100) <2E03D7DA-9B8F-31BB-8FB5-3D3B6272127F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fff87abe000 -     0x7fff87accfff  libcommonCrypto.dylib (60027) <DA98AE56-BC3F-3AD0-9660-8CC79E4AECE6> /usr/lib/system/libcommonCrypto.dylib
    0x7fff87acf000 -     0x7fff87ad1fff  com.apple.TrustEvaluationAgent (2.0 - 23) <A97D348B-32BF-3E52-8DF2-59BFAD21E1A3> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
    0x7fff87afa000 -     0x7fff87b14fff  com.apple.CoreMediaAuthoring (2.1 - 914) <CFA664F9-D5A7-3281-A12F-3ED8A98FD8C1> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthoring
    0x7fff87b15000 -     0x7fff87b21fff  libCSync.A.dylib (328.0.4) <D49C5371-6BCC-32F6-9013-BFF2E924B790> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x7fff87b22000 -     0x7fff87b5ffe7  libGLImage.dylib (8.6.1) <7F31DD61-3110-3541-A9BB-035CD1262E50> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x7fff87b60000 -     0x7fff87b69fff  com.apple.CommerceCore (1.0 - 26) <997CD214-BC78-3C61-A1B8-813EA1CB9997> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCore.framework/Versions/A/CommerceCore
    0x7fff87b6a000 -     0x7fff87b70fff  libmacho.dylib (829) <BF332AD9-E89F-387E-92A4-6E1AB74BD4D9> /usr/lib/system/libmacho.dylib
    0x7fff87b88000 -     0x7fff87bdfff7  com.apple.ScalableUserInterface (1.0 - 1) <F1D43DFB-1796-361B-AD4B-39F1EED3BE19> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableUserInterface.framework/Versions/A/ScalableUserInterface
    0x7fff87be0000 -     0x7fff87d8efff  com.apple.QuartzCore (1.8 - 304.0) <BDC66714-F60C-386D-A773-F897D1E87AB6> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff87dff000 -     0x7fff87e1cfff  com.apple.openscripting (1.3.6 - 148.2) <33B87CFB-CACC-3EBC-893D-38AECB94FB8A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
    0x7fff87ebd000 -     0x7fff87f3dff7  com.apple.ApplicationServices.ATS (332 - 341.1) <BD83B039-AB25-3E3E-9975-A67DAE66988B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
    0x7fff87f3e000 -     0x7fff87f40fff  com.apple.securityhi (4.0 - 55002) <34E45C60-DC7E-3FCC-A1ED-EBF48B77C559> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
    0x7fff87f41000 -     0x7fff87f92ff7  com.apple.SystemConfiguration (1.12.2 - 1.12.2) <E095637C-457F-3D8F-AE32-A032F9D5A46C> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x7fff87fbd000 -     0x7fff87fd1fff  libGL.dylib (8.6.1) <2E00615F-97F5-34EB-BE07-75A24F3C18D7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7fff87fd2000 -     0x7fff87fe4ff7  libz.1.dylib (43) <2A1551E8-A272-3DE5-B692-955974FE1416> /usr/lib/libz.1.dylib
    0x7fff8804d000 -     0x7fff882fbfff  com.apple.imageKit (2.2 - 667) <66A64289-6259-335E-9D8C-E3E02ECE7837> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Versions/A/ImageKit
    0x7fff882fc000 -     0x7fff8832dff7  com.apple.DictionaryServices (1.2 - 184.4) <054F2D6F-9CFF-3EF1-9778-25C551B616C1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
    0x7fff883d6000 -     0x7fff88402ff7  libRIP.A.dylib (328.0.4) <9DFF2DC8-9877-3546-A760-929CD974E30A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x7fff88403000 -     0x7fff88411ff7  libsystem_network.dylib (77.10) <0D99F24E-56FE-380F-B81B-4A4C630EE587> /usr/lib/system/libsystem_network.dylib
    0x7fff88412000 -     0x7fff8841dfff  com.apple.CommonAuth (3.0 - 2.0) <74A86DDD-57D0-3178-AB74-E1F31DBFFC39> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x7fff8841e000 -     0x7fff88424fff  com.apple.DiskArbitration (2.5.1 - 2.5.1) <C0EC9C24-F5F4-3378-84DE-EA1073DA760E> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff88425000 -     0x7fff88430ff7  com.apple.DisplayServicesFW (2.7.2 - 357) <00CB0283-408E-3F37-8138-B108EE6DDE83> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices
    0x7fff88431000 -     0x7fff88451fff  libPng.dylib (845) <C3CDD2B4-3CB0-3F6D-8411-DAAF267E952B> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fff884e2000 -     0x7fff8852dff7  com.apple.CoreMedia (1.0 - 926.62) <CFBD094F-DA9C-3498-9D50-BC754B56F00A> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x7fff8852e000 -     0x7fff88588fff  com.apple.print.framework.PrintCore (8.1 - 387.1) <1FA17B75-33E6-35BD-9198-35F92E37B248> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
    0x7fff88589000 -     0x7fff88596fff  com.apple.AppleFSCompression (49 - 1.0) <5508344A-2A7E-3122-9562-6F363910A80E> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression
    0x7fff88597000 -     0x7fff885befff  com.apple.framework.familycontrols (4.1 - 410) <AE49B2AB-7D2B-3D52-8E21-60EBEA1A38E6> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
    0x7fff885bf000 -     0x7fff885bffff  com.apple.vecLib (3.8 - vecLib 3.8) <794317C7-4E38-338A-A874-5E18001C8503> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x7fff885c0000 -     0x7fff885c2fff  libCVMSPluginSupport.dylib (8.6.1) <7EFDA31E-E463-3897-A8DC-7FD266EB713E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
    0x7fff885c3000 -     0x7fff885c3fff  com.apple.ApplicationServices (45 - 45) <A3ABF20B-ED3A-32B5-830E-B37831A45A80> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
    0x7fff885c4000 -     0x7fff8862dfff  libstdc++.6.dylib (56) <EAA2B53E-EADE-39CF-A0EF-FB9D4940672A> /usr/lib/libstdc++.6.dylib
    0x7fff88633000 -     0x7fff8874cff7  com.apple.ImageIO.framework (3.2.0 - 845) <553B9828-A7D9-3AE4-A214-1C33417545FD> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x7fff887a6000 -     0x7fff887acfff  libGFXShared.dylib (8.6.1) <CF55E720-1B9E-3E24-A1DA-7FA8B261CD8E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x7fff887ad000 -     0x7fff893daff7  com.apple.AppKit (6.8 - 1187.34) <1FF64844-EB62-3F96-AED7-6525B7CCEC23> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff893db000 -     0x7fff893e8fff  libbz2.1.0.dylib (29) <CE9785E8-B535-3504-B392-82F0064D9AF2> /usr/lib/libbz2.1.0.dylib
    0x7fff893e9000 -     0x7fff8943eff7  libTIFF.dylib (845) <ADCB4683-69EB-318B-8BE7-5FDF38BCADAF> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x7fff89459000 -     0x7fff8945afff  libDiagnosticMessagesClient.dylib (8) <8548E0DC-0D2F-30B6-B045-FE8A038E76D8> /usr/lib/libDiagnosticMessagesClient.dylib
    0x7fff8945b000 -     0x7fff89483fff  libJPEG.dylib (845) <A32618D7-FB91-3EE2-A105-5407B2F3F8D8> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fff89484000 -     0x7fff898a1fff  FaceCoreLight (2.4.1) <A34C9575-C4C1-31B1-809B-7751070B4E8B> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLight
    0x7fff89971000 -     0x7fff899a7fff  com.apple.DebugSymbols (98 - 98) <14E788B1-4EB2-3FD7-934B-849534DFC198> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
    0x7fff899ec000 -     0x7fff899ecfff  com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) <B5A18EE8-DF81-38DD-ACAF-7076B2A26225> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
    0x7fff899ed000 -     0x7fff89b3efff  com.apple.audio.toolbox.AudioToolbox (1.8 - 1.8) <833DA682-A3C1-39E7-AEC3-9EDC734DE2A9> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7fff8a184000 -     0x7fff8a5c0fff  com.apple.VideoToolbox (1.0 - 926.62) <7D749558-08B6-3F86-A20E-05ECDACE6F17> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x7fff8a5c1000 -     0x7fff8a5e0ff7  libresolv.9.dylib (51) <0882DC2D-A892-31FF-AD8C-0BB518C48B23> /usr/lib/libresolv.9.dylib
    0x7fff8a614000 -     0x7fff8a618fff  libCGXType.A.dylib (328.0.4) <446116C9-E59C-35FA-892A-7F6BA8C9DA8A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x7fff8a61c000 -     0x7fff8a61ffff  libRadiance.dylib (845) <E8956A35-494E-3014-8B86-362D32576116> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x7fff8a620000 -     0x7fff8a6bafff  libvMisc.dylib (380.6) <714336EA-1C0E-3735-B31C-19DFDAAF6221> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
    0x7fff8a6c0000 -     0x7fff8a703fff  com.apple.RemoteViewServices (2.0 - 80.5) <F3A897C9-A277-3B56-8FB3-2BC2C10C33BF> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
    0x7fff8a704000 -     0x7fff8a848fef  com.apple.MediaControlSender (1.4.5 - 145.3) <3A308EA3-21F7-3213-9157-D3421EB43715> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/MediaControlSender
    0x7fff8aab5000 -     0x7fff8aacaff7  libdispatch.dylib (228.23) <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
    0x7fff8aacb000 -     0x7fff8ab39fff  com.apple.framework.IOKit (2.0.1 - 755.20.4) <F2E5AC1B-F03D-3916-B239-7B421579DFA5> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff8ab3a000 -     0x7fff8ab61ff7  com.apple.PerformanceAnalysis (1.16 - 16) <E4888388-F41B-313E-9CBB-5807D077BDA9> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
    0x7fff8ab65000 -     0x7fff8ab68fff  com.apple.help (1.3.2 - 42) <343904FE-3022-3573-97D6-5FE17F8643BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
    0x7fff8ab69000 -     0x7fff8ab74ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <C12962D5-85FB-349E-AA56-64F4F487F219> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
    0x7fff8ab81000 -     0x7fff8abcafff  com.apple.framework.CoreWiFi (1.1 - 110.11) <9DA88230-5530-3981-BF71-FAE3822EE8B0> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x7fff8ac12000 -     0x7fff8ad10fff  com.apple.QuickLookUIFramework (4.0 - 555.4) <58EC2F30-0959-3586-A1DD-BDCAF589D2D3> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x7fff8ad6c000 -     0x7fff8ad6cfff  com.apple.Accelerate (1.8 - Accelerate 1.8) <6AD48543-0864-3D40-80CE-01F184F24B45> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff8ad78000 -     0x7fff8ad97ff7  com.apple.ChunkingLibrary (2.0 - 133.2) <D2A746DE-002A-3C6C-961E-BE94E71DB835> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
    0x7fff8ad98000 -     0x7fff8adc6fff  com.apple.CoreServicesInternal (154.2 - 154.2) <3E6196E6-F3B4-316F-9E1F-13B6B9694C7E> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
    0x7fff8adc9000 -     0x7fff8add8ff7  libxar.1.dylib (105) <370ED355-E516-311E-BAFD-D80633A84BE1> /usr/lib/libxar.1.dylib
    0x7fff8ae34000 -     0x7fff8ae41ff7  com.apple.NetAuth (4.0 - 4.0) <F5BC7D7D-AF28-3C83-A674-DADA48FF7810> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x7fff8ae7d000 -     0x7fff8ae7dfff  libOpenScriptingUtil.dylib (148.2) <B8061D13-C1B2-38D5-A723-9A98D64E67AC> /usr/lib/libOpenScriptingUtil.dylib
    0x7fff8ae7e000 -     0x7fff8aecdff7  libcorecrypto.dylib (106.2) <CE0C29A3-C420-339B-ADAA-52F4683233CC> /usr/lib/system/libcorecrypto.dylib
    0x7fff8afa6000 -     0x7fff8afb9ff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <2F2694E9-A7BC-33C7-B4CF-8EC907DF0FEB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
    0x7fff8b08e000 -     0x7fff8b168ff7  com.apple.backup.framework (1.4.1 - 1.4.1) <A3CFCA9E-717C-302D-821B-16FD35E6673F> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x7fff8b169000 -     0x7fff8b21afff  com.apple.LaunchServices (539.7 - 539.7) <DA7C602E-5E01-31B8-925D-B45360CA089F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
    0x7fff8b21b000 -     0x7fff8b277ff7  com.apple.Symbolication (1.3 - 93) <F2C7E0B6-B241-3020-B30A-0636D0FA3378> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
    0x7fff8b39f000 -     0x7fff8b42cff7  com.apple.SearchKit (1.4.0 - 1.4.0) <C7F43889-F8BF-3CB9-AD66-11AEFCBCEDE7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
    0x7fff8b42d000 -     0x7fff8b477ff7  libGLU.dylib (8.6.1) <DF45C1E3-3884-3991-B84F-F39B482E8BF8> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff8b592000 -     0x7fff8b613fff  com.apple.Metadata (10.7.0 - 707.3) <A45D75C1-B311-39F0-AF4A-63FCCC098C1D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
    0x7fff8b614000 -     0x7fff8b619fff  libcompiler_rt.dylib (30) <08F8731D-5961-39F1-AD00-4590321D24A9> /usr/lib/system/libcompiler_rt.dylib
    0x7fff8b68b000 -     0x7fff8b690fff  libcache.dylib (57) <65187C6E-3FBF-3EB8-A1AA-389445E2984D> /usr/lib/system/libcache.dylib
    0x7fff8b691000 -     0x7fff8b82cfef  com.apple.vImage (6.0 - 6.0) <FAE13169-295A-33A5-8E6B-7C2CC1407FA7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
    0x7fff8b871000 -     0x7fff8bc6aff7  com.apple.MediaToolbox (1.0 - 926.62) <83BBE53E-29FE-3874-9991-B6D009EADCC5> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x7fff8bc6b000 -     0x7fff8bcb8fff  com.apple.CoreMediaIO (306.0 - 4151.1) <583789FD-1AB3-3436-9B92-FC78B1FBDACD> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
    0x7fff8bccb000 -     0x7fff8bcf7fff  com.apple.quartzfilters (1.8.0 - 1.7.0) <B8DE45D7-1827-3379-A478-1A574A1D11D9> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework/Versions/A/QuartzFilters
    0x7fff8bdbf000 -     0x7fff8be27ff7  libc++.1.dylib (65.1) <20E31B90-19B9-3C2A-A9EB-474E08F9FE05> /usr/lib/libc++.1.dylib
    0x7fff8be28000 -     0x7fff8bf48fff  com.apple.desktopservices (1.7.2 - 1.7.2) <CDE8C2C2-C505-31B0-8C61-E40E4EA364A5> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
    0x7fff8c00d000 -     0x7fff8c02eff7  libCRFSuite.dylib (33) <736ABE58-8DED-3289-A042-C25AF7AE5B23> /usr/lib/libCRFSuite.dylib
    0x7fff8c02f000 -     0x7fff8c02ffff  com.apple.Cocoa (6.7 - 19) <1F77945C-F37A-3171-B22E-F7AB0FCBB4D4> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x7fff8c030000 -     0x7fff8c03bfff  libsystem_notify.dylib (98.5) <C49275CC-835A-3207-AFBA-8C01374927B6> /usr/lib/system/libsystem_notify.dylib
    0x7fff8c03c000 -     0x7fff8c053fff  com.apple.GenerationalStorage (1.1 - 132.2) <3F5C87BD-D866-3732-8CB9-D23ED9784D6E> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage
    0x7fff8c054000 -     0x7fff8c151ff7  libxml2.2.dylib (22.3) <47B09CB2-C636-3024-8B55-6040F7829B4C> /usr/lib/libxml2.2.dylib
    0x7fff8c17e000 -     0x7fff8c181ff7  libdyld.dylib (210.2.3) <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
    0x7fff8c182000 -     0x7fff8c1cdfff  com.apple.framework.CoreWLAN (3.0.1 - 301.12) <3CC31D0B-8BAF-3042-8940-FE33EB2405A3> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x7fff8c1ce000 -     0x7fff8c1e4fff  com.apple.MultitouchSupport.framework (235.29 - 235.29) <617EC8F1-BCE7-3553-86DD-F857866E1257> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
    0x7fff8c1e5000 -     0x7fff8c515ff7  com.apple.HIToolbox (2.0 - 625) <317F75F7-4B0F-35F5-89A7-F20BA60AC944> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
    0x7fff8c516000 -     0x7fff8c7bafff  com.apple.CoreImage (8.2.2 - 1.0.1) <930B0B23-DD84-3B0C-B5A9-C09B7068A6F0> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework/Versions/A/CoreImage
    0x7fff8c7f6000 -     0x7fff8d1861f7  com.apple.CoreGraphics (1.600.0 - 328.0.4) <9A1324EF-C9CB-30E4-AE9F-0AEF69052FAE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff8dfa5000 -     0x7fff8e1a5fff  libicucore.A.dylib (491.11.1) <CC318A27-878A-38CE-9292-1B98353FA9C7> /usr/lib/libicucore.A.dylib
    0x7fff8e1a6000 -     0x7fff8e42bfff  com.apple.RawCamera.bundle (4.01 - 666) <BBDA55DD-6155-39B5-9D55-5CCCCFF26D98> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x7fff8e42c000 -     0x7fff8e4caff7  com.apple.ink.framework (10.8.2 - 150) <84B9825C-3822-375F-BE58-A753444FBDE2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
    0x7fff8e4cb000 -     0x7fff8e4daff7  com.apple.opengl (1.8.6 - 1.8.6) <720CC06C-0D01-37AE-BB3D-D7F0242B262A> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff8e4db000 -     0x7fff8e4e0fff  com.apple.OpenDirectory (10.8 - 151.10) <CF44120B-9B01-32DD-852E-C9C0E1243FC0> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff8e64e000 -     0x7fff8e6abff7  com.apple.AE (645.3 - 645.3) <FF867ACA-8628-3E5A-8FA0-AF429B42C5D7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
    0x7fff8eebc000 -     0x7fff8eec0fff  libCoreVMClient.dylib (24.4) <55F71158-ADEE-3863-92E9-4772DCEA8E31> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
    0x7fff8eec1000 -     0x7fff8efc3fff  libJP2.dylib (845) <405CAF25-0AA5-3C6B-A4A6-94471A1EDD2F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x7fff8efc4000 -     0x7fff8f089ff7  com.apple.coreui (2.0 - 181.1) <83D2C92D-6842-3C9D-9289-39D5B4554C3A> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff8f0d2000 -     0x7fff8f13ffff  com.apple.datadetectorscore (4.0 - 269.1) <C94C372B-3821-3A46-A8C2-091AB1CFF7F4> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
    0x7fff8f140000 -     0x7fff8f183ff7  com.apple.bom (12.0 - 192) <0BF1F2D2-3648-36B7-BE4B-551A0173209B> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x7fff8f184000 -     0x7fff8f4e0fff  com.apple.Foundation (6.8 - 945.11) <A5D41956-A354-3ACC-9355-BE200072223B> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff8f4e1000 -     0x7fff8f4e5fff  com.apple.IOSurface (86.0.3 - 86.0.3) <C121DE83-ED12-3DC1-BDB3-4FCB29AB0571> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff8f4e6000 -     0x7fff8f58cff7  com.apple.CoreServices.OSServices (557.4 - 557.4) <841878A8-6F3E-300D-8F01-444B3CC1F41D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
    0x7fff8f60b000 -     0x7fff8f8a5ff7  com.apple.JavaScriptCore (8536 - 8536.26.7) <ADAD1276-675A-3000-B746-560A2EB596A2> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x7fff8f8a6000 -     0x7fff8f8b9ff7  libbsm.0.dylib (32) <F497D3CE-40D9-3551-84B4-3D5E39600737> /usr/lib/libbsm.0.dylib
    0x7fff8f916000 -     0x7fff8f91dfff  com.apple.NetFS (5.0 - 4.0) <82E24B9A-7742-3DA3-9E99-ED267D98C05E> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7fff8f928000 -     0x7fff8f9a6ff7  com.apple.securityfoundation (6.0 - 55115.4) <C5461971-E455-31A6-99B8-AF80C4BC26DD> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
    0x7fff8f9a7000 -     0x7fff8f9b1fff  com.apple.speech.recognition.framework (4.1.5 - 4.1.5) <D803919C-3102-3515-A178-61E9C86C46A1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
    0x7fff8fa04000 -     0x7fff8faf9fff  libiconv.2.dylib (34) <FEE8B996-EB44-37FA-B96E-D379664DEFE1> /usr/lib/libiconv.2.dylib
    0x7fff8fafa000 -     0x7fff8fbc6fe7  libsystem_c.dylib (825.25) <8CBCF9B9-EBB7-365E-A3FF-2F3850763C6B> /usr/lib/system/libsystem_c.dylib
    0x7fff8fbc7000 -     0x7fff8fbe2ff7  libsystem_kernel.dylib (2050.20.9) <EC0A9F5B-C9F5-336B-A7DD-49A718042F39> /usr/lib/system/libsystem_kernel.dylib
    0x7fff8fbe4000 -     0x7fff8fc05fff  com.apple.Ubiquity (1.2 - 243.10) <F97D3A33-2C8B-3CFF-AF75-A74866D42853> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x7fff8fc06000 -     0x7fff8fc06fff  com.apple.Carbon (154 - 155) <372716D2-6FA1-3611-8501-3DD1D4A6E8C8> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x7fff8fc07000 -     0x7fff8fc15ff7  libkxld.dylib (2050.20.9) <27342FF8-E3DA-3E03-B3FB-CFFD64F20E80> /usr/lib/system/libkxld.dylib
    0x7fff8fc16000 -     0x7fff8fc17fff  liblangid.dylib (116) <864C409D-D56B-383E-9B44-A435A47F2346> /usr/lib/liblangid.dylib
    0x7fff8fc18000 -     0x7fff8fc2ffff  com.apple.CFOpenDirectory (10.8 - 151.10) <FFBBA538-00B5-334E-BA5B-C8AD6CDCDA14> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x7fff8fc30000 -     0x7fff8fc89fff  com.apple.ImageCaptureCore (5.0.1 - 5.0.1) <2CC27836-1E1E-3633-B15C-A3BA1734D092> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore
    0x7fff8fc8a000 -     0x7fff8fd27ff7  com.apple.PDFKit (2.7.2 - 2.7.2) <DE5BE2EF-2570-3792-B1C3-AAD45765F533> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versions/A/PDFKit
    0x7fff8fd28000 -     0x7fff8fd2aff7  com.apple.print.framework.Print (8.0 - 258) <34666CC2-B86D-3313-B3B6-A9977AD593DA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
    0x7fff8fd2b000 -     0x7fff8fd37fff  com.apple.CrashReporterSupport (10.8.2 - 415) <55783BF9-125E-3F9C-A412-6A095ECD9353> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport
    0x7fff8fd38000 -     0x7fff8fd5aff7  libxpc.dylib (140.41) <FAC04D8B-680E-325F-8F0C-DD69859D0E01> /usr/lib/system/libxpc.dylib
    0x7fff8fd69000 -     0x7fff8fd94fff  libxslt.1.dylib (11.3) <441776B8-9130-3893-956F-39C85FFA644F> /usr/lib/libxslt.1.dylib
    0x7fff8fd95000 -     0x7fff8fe2ffff  com.apple.CoreSymbolication (3.0 - 87) <75F2C0DD-549A-36F6-BD9E-FB40A924344F> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
    0x7fff8fe30000 -     0x7fff8fe55ff7  libc++abi.dylib (24.4) <E7BD9363-1D25-3551-A68A-2E2FF6ABECD7> /usr/lib/libc++abi.dylib
    0x7fff8fe9b000 -     0x7fff8fef8fff  com.apple.audio.CoreAudio (4.1.0 - 4.1.0) <B3198BD6-EA1D-3E5E-ADD4-37D8E6B72678> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff8ff04000 -     0x7fff8ff07fff  com.apple.AppleSystemInfo (2.0 - 2) <BC221376-361F-3F85-B284-DC251D3BB442> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo
    0x7fff8ff0a000 -     0x7fff8ff0bfff  libsystem_blocks.dylib (59) <D92DCBC3-541C-37BD-AADE-ACC75A0C59C8> /usr/lib/system/libsystem_blocks.dylib
    0x7fff8ff11000 -     0x7fff9000efff  libsqlite3.dylib (138.1) <ADE9CB98-D77D-300C-A32A-556B7440769F> /usr/lib/libsqlite3.dylib
    0x7fff90060000 -     0x7fff9017892f  libobjc.A.dylib (532.2) <90D31928-F48D-3E37-874F-220A51FD9E37> /usr/lib/libobjc.A.dylib
    0x7fff90179000 -     0x7fff9017aff7  libsystem_sandbox.dylib (220) <3C3B03CF-C525-3CB3-8557-62E91B93AC95> /usr/lib/system/libsystem_sandbox.dylib
    0x7fff9017b000 -     0x7fff90181ff7  libunwind.dylib (35.1) <21703D36-2DAB-3D8B-8442-EAAB23C060D3> /usr/lib/system/libunwind.dylib
    0x7fff90182000 -     0x7fff901d8ff7  com.apple.opencl (2.1.21 - 2.1.21) <E2E3C6D8-208D-3926-B051-77FDD8F0BE2D> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff90431000 -     0x7fff9054bfff  com.apple.coreavchd (5.6.0 - 5600.4.16) <0CF2ABE5-B088-3B5D-9C04-47AE708ADAE3> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
    0x7fff9054c000 -     0x7fff9054cfff  libkeymgr.dylib (25) <CC9E3394-BE16-397F-926B-E579B60EE429> /usr/lib/system/libkeymgr.dylib
    0x7fff9054e000 -     0x7fff9054fff7  libremovefile.dylib (23.1) <DBBFAF35-AC78-3856-92F6-6E4FD9DF14A2> /usr/lib/system/libremovefile.dylib
    0x7fff90550000 -     0x7fff905e1fff  com.apple.CorePDF (2.0 - 2) <EB5660B1-0D79-34F3-B242-B559AE0A5B4A> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x7fff90a09000 -     0x7fff90a0dff7  com.apple.CommonPanels (1.2.5 - 94) <AAC003DE-2D6E-38B7-B66B-1F3DA91E7245> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
    0x7fff90a1a000 -     0x7fff90b8bff7  com.apple.QTKit (7.7.1 - 2599.13) <5B24A892-ED69-3C01-8B00-DF3AD81A20D4> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x7fff90b8c000 -     0x7fff90de7ff7  com.apple.QuartzComposer (5.1 - 284) <D9CDC9ED-9F03-30F0-80DF-BA189A054AC9> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framework/Versions/A/QuartzComposer
    0x7fff90de8000 -     0x7fff90de8fff  com.apple.quartzframework (1.5 - 1.5) <6403C982-0D45-37EE-A0F0-0EF8BCFEF440> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x7fff90de9000 -     0x7fff90de9fff  com.apple.CoreServices (57 - 57) <9DD44CB0-C644-35C3-8F57-0B41B3EC147D> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff90e33000 -     0x7fff90e41fff  com.apple.Librarian (1.1 - 1) <1635162F-239A-341E-83C7-710C55E254AF> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
    0x7fff90e42000 -     0x7fff90fc8fff  libBLAS.dylib (1073.4) <C102C0F6-8CB6-3B49-BA6B-2EB61F0B2784> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
    0x7fff90fc9000 -     0x7fff911b2fff  com.apple.CoreFoundation (6.8 - 744.12) <EF002794-DAEF-31C6-866C-E3E3AC387A9F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff911b3000 -     0x7fff911b4ff7  libSystem.B.dylib (169.3) <365477AB-D641-389D-B8F4-A1FAE9657EEE> /usr/lib/libSystem.B.dylib
    0x7fff911fb000 -     0x7fff91231fff  libsystem_info.dylib (406.17) <4FFCA242-7F04-365F-87A6-D4EFB89503C1> /usr/lib/system/libsystem_info.dylib
    0x7fff91232000 -     0x7fff913a6fff  com.apple.CFNetwork (596.2.3 - 596.2.3) <6A16C2BD-1035-30F9-AE96-D9E3BB54A976> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x7fff913a7000 -     0x7fff9179efff  libLAPACK.dylib (1073.4) <D632EC8B-2BA0-3853-800A-20DA00A1091C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
    0x7fff92cb1000 -     0x7fff92ee6ff7  com.apple.CoreData (106.1 - 407.7) <24E0A6B4-9ECA-3D12-B26A-72B9DCF09768> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fff92ef3000 -     0x7fff92f21ff7  libsystem_m.dylib (3022.6) <B434BE5C-25AB-3EBD-BAA7-5304B34E3441> /usr/lib/system/libsystem_m.dylib
    0x7fff92f22000 -     0x7fff92f4efff  com.apple.framework.Apple80211 (8.3 - 830.18) <F2CABF84-E0B1-3F8D-9EC5-526121A007F3> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x7fff92f4f000 -     0x7fff92f8eff7  com.apple.QD (3.42 - 285) <8DF36FCA-C06B-30F4-A631-7BE2FF7E56D1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
    0x7fff92f9c000 -     0x7fff92ff2fff  com.apple.HIServices (1.20 - 417) <A1129272-FEC8-350B-BA26-5A97F23C413D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
    0x7fff93076000 -     0x7fff9308afff  com.apple.speech.synthesis.framework (4.1.12 - 4.1.12) <94EDF2AB-809C-3D15-BED5-7AD45B2A7C16> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x7fff9308b000 -     0x7fff9308dff7  libunc.dylib (25) <92805328-CD36-34FF-9436-571AB0485072> /usr/lib/system/libunc.dylib
    0x7fff93118000 -     0x7fff9313aff7  com.apple.Kerberos (2.0 - 1) <C49B8820-34ED-39D7-A407-A3E854153556> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff9313b000 -     0x7fff93143ff7  libsystem_dnssd.dylib (379.34) <F0AE5B8E-C7CC-3393-927F-B65DB04016AA> /usr/lib/system/libsystem_dnssd.dylib
    0x7fff93144000 -     0x7fff93145ff7  libdnsinfo.dylib (453.18) <E7595861-ECF9-336E-9901-BED2620FAA80> /usr/lib/system/libdnsinfo.dylib
    0x7fff93146000 -     0x7fff93251fff  libFontParser.dylib (84.5) <617A7D30-C7BC-39FC-A1FE-59367B4A5719> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x7fff93252000 -     0x7fff93522fff  com.apple.security (7.0 - 55179.1) <639641EF-8156-3190-890C-1053658E044A> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff93523000 -     0x7fff9355dfff  com.apple.GSS (3.0 - 2.0) <0BDF8090-5EF4-3759-94DE-8521D74188AA> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x7fff93586000 -     0x7fff9359bfff  com.apple.ImageCapture (8.0 - 8.0) <17A45CE6-7DA3-36A5-B7EF-72BC136981AE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
    0x7fff9359c000 -     0x7fff9361efff  com.apple.Heimdal (3.0 - 2.0) <660A6C64-4912-32C8-A332-B64164032A2D> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x7fff9361f000 -     0x7fff9366bff7  libauto.dylib (185.1) <73CDC482-16E3-3FC7-9BB4-FBA2DA44DBC2> /usr/lib/libauto.dylib
    0x7fff9366c000 -     0x7fff936b0fff  libcups.2.dylib (327) <9B3F3321-D2BC-3195-BF20-4008FC52A390> /usr/lib/libcups.2.dylib
    0x7fff936b1000 -     0x7fff939c8ff7  com.apple.CoreServices.CarbonCore (1037.3 - 1037.3) <DF7CABCA-F2CB-345B-8EFF-F0F4E937B7FF> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
    0x7fff939c9000 -     0x7fff939cbfff  libquarantine.dylib (52) <4BE2E642-A14F-340A-B482-5BD2AEFD9C24> /usr/lib/system/libquarantine.dylib
    0x7fff939cc000 -     0x7fff93a9eff7  com.apple.CoreText (260.0 - 275.16) <5BFC1D67-6A6F-38BC-9D90-9C712684EDAC> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x7fff93a9f000 -     0x7fff93ac9ff7  com.apple.CoreVideo (1.8 - 99.3) <C424838A-889C-39E5-8108-FD05C93D26A0> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff93b21000 -     0x7fff93bdeff7  com.apple.ColorSync (4.8.0 - 4.8.0) <6CE333AE-EDDB-3768-9598-9DB38041DC55> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync
    0x7fff93c46000 -     0x7fff943eefff  com.apple.CoreAUC (6.16.00 - 6.16.00) <B0B4B5B8-6F8F-3221-9128-313E3B8C695D> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x7fff945d9000 -     0x7fff945ddfff  libpam.2.dylib (20) <C8F45864-5B58-3237-87E1-2C258A1D73B8> /usr/lib/libpam.2.dylib
    0x7fff945de000 -     0x7fff945deffd  com.apple.audio.units.AudioUnit (1.8 - 1.8) <29E2C990-3617-3FA2-BDD7-DB7DF493E443> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7fff945df000 -     0x7fff9463bfff  com.apple.QuickLookFramework (4.0 - 555.4) <B34DB61C-15F0-3CF8-98A4-152C2F54DF8D> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x7fff94900000 -     0x7fff94908fff  liblaunch.dylib (442.26.2) <2F71CAF8-6524-329E-AC56-C506658B4C0C> /usr/lib/system/liblaunch.dylib
    0x7fff94909000 -     0x7fff9490dff7  com.apple.TCC (1.0 - 1) <F2F3B753-FC73-3543-8BBE-859FDBB4D6A6> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x7fff94926000 -     0x7fff9498efff  libvDSP.dylib (380.6) <CD4C5EEB-9E63-30C4-8103-7A5EAEA0BE60> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
    0x7fff9498f000 -     0x7fff94993fff  libGIF.dylib (845) <2690CE83-E934-3EF8-A30A-996EDADCE3E4> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7fff94994000 -     0x7fff949ebff7  com.apple.AppleVAFramework (5.0.18 - 5.0.18) <B75949DD-AC27-3848-8221-00D70D14C7E0> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA

External Modification Summary:
  Calls made by other processes targeting this process:
    task_for_pid: 2
    thread_create: 0
    thread_set_state: 0
  Calls made by this process:
    task_for_pid: 0
    thread_create: 0
    thread_set_state: 0
  Calls made by all processes on this machine:
    task_for_pid: 2103
    thread_create: 2
    thread_set_state: 0

VM Region Summary:
ReadOnly portion of Libraries: Total=186.3M resident=75.9M(41%) swapped_out_or_unallocated=110.4M(59%)
Writable regions: Total=79.4M written=10.2M(13%) resident=28.1M(35%) swapped_out=0K(0%) unallocated=51.3M(65%)
 
REGION TYPE                      VIRTUAL
===========                      =======
CG backing stores                   512K
CG image                             20K
CG shared images                   1216K
CoreServices                       5176K
MALLOC                             44.8M
MALLOC guard page                    48K
Memory tag=240                        4K
Memory tag=242                       12K
Memory tag=249                      156K
Memory tag=251                       36K
STACK GUARD                        56.0M
Stack                              12.6M
Stack (reserved)                    520K        reserved VM address space (unallocated)
VM_ALLOCATE                        17.8M
__DATA                             16.6M
__IMAGE                             528K
__LINKEDIT                         53.0M
__TEXT                            133.3M
__UNICODE                           544K
mapped file                        42.1M
shared memory                       308K
===========                      =======
TOTAL                             385.2M
TOTAL, minus reserved VM space    384.6M

Model: MacBookAir5,2, BootROM MBA51.00EF.B01, 2 processors, Intel Core i7, 2 GHz, 8 GB, SMC 2.5f7
Graphics: Intel HD Graphics 4000, Intel HD Graphics 4000, Built-In, 512 MB
Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1600 MHz, 0x80AD, 0x484D5434353153364D465238412D50422020
Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1600 MHz, 0x80AD, 0x484D5434353153364D465238412D50422020
AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xE9), Broadcom BCM43xx 1.0 (5.106.98.100.14)
Bluetooth: Version 4.1.2f9 11046, 2 service, 11 devices, 1 incoming serial ports
Network Service: AirPort, AirPort, en0
Serial ATA Device: APPLE SSD SM256E, 251 GB
USB Device: hub_device, 0x8087  (Intel Corporation), 0x0024, 0x1d100000 / 2
USB Device: hub_device, 0x0424  (SMSC), 0x2513, 0x1d180000 / 3
USB Device: BRCM20702 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x1d181000 / 6
USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x821f, 0x1d181300 / 8
USB Device: Internal Memory Card Reader, apple_vendor_id, 0x8404, 0x1d183000 / 5
USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x024c, 0x1d182000 / 4
USB Device: hub_device, 0x8087  (Intel Corporation), 0x0024, 0x1a100000 / 2
USB Device: FaceTime HD Camera (Built-in), apple_vendor_id, 0x8510, 0x1a110000 / 3
Windows error message:

Code: Select all

Problem signature:
  Problem Event Name:	APPCRASH
  Application Name:	love.exe
  Application Version:	0.8.0.0
  Application Timestamp:	4f78fd8d
  Fault Module Name:	love.exe
  Fault Module Version:	0.8.0.0
  Fault Module Timestamp:	4f78fd8d
  Exception Code:	c0000005
  Exception Offset:	00029a9a
  OS Version:	6.1.7601.2.1.0.256.1
  Locale ID:	1033
  Additional Information 1:	0a9e
  Additional Information 2:	0a9e372d3b4ad19135b953a78882e789
  Additional Information 3:	0a9e
  Additional Information 4:	0a9e372d3b4ad19135b953a78882e789

Read our privacy statement online:
  http://go.microsoft.com/fwlink/?linkid=104288&clcid=0x0409

If the online privacy statement is not available, please read our privacy statement offline:
  C:\Windows\system32\en-US\erofflps.txt
User avatar
felix24
Party member
Posts: 163
Joined: Tue Jul 26, 2011 4:51 pm
Contact:

Re: Plazma Being (Beta)

Post by felix24 »

Hey Jasoco, thanks for trying it out ^^ and for the error messages. Strange that it doesn't work on either of your machines. What version of windows are you running and what are the specs of your machine if you don't mind me asking. It crashes for me and gives me the exception code c0000005 when I try to run it using 0.8.0 too, but it should run using 0.7.2 cause that's the version I used to make it.
I assume that error message you displayed is for when you tried it using 0.8.0? Did you get the same thing when running it using 0.7.2?
The exe version has been tried on about 20-30 different machines at this point and there's never been an issue yet. I wonder if you download that and try it would it run. Probably a long shot but it would be interesting to see if it works. I'll send you a link for it anyway, and you can try it out if you want. Thanks for your help :ultrahappy:


The .love version I uploaded is available to anyone. Just leave me a message if you want to try it and I'll send you the link ^^ .
User avatar
Codex
Party member
Posts: 106
Joined: Tue Mar 06, 2012 6:49 am

Re: Plazma Being (Beta)

Post by Codex »

Jasoco wrote:Hey Felix, I just got around to testing it out in both OS X and Windows and I am actually getting a crash on both systems. It never actually runs. Löve's GUI never gets a chance to appear. Something is causing a crash at the lowest level possible before the engine can even start and I don't know what it is.

Bottom line, Mac and Linux support is not your problem (You should not be denying Mac or Linux users from wanting to try the game as it's clearly not the problem) it's something else.

I think you're going to have to get some of the more technical Löve developers in here to figure out what is going on. Since you won't offer the .love to everyone, and that's your decision, maybe some of them can request a demo themselves.

I looked through your code and didn't really see anything that stood out and said "I'm the problem!" because it all looked like a normal Löve project. So I'm stumped. I bet it's something really silly. But it could be anything.
I ran into the same (or similar) problem. I tried running it on windows 7, with love - 8.0. Game wouldn't run and no debug LOVE message displays... :monocle:
Post Reply

Who is online

Users browsing this forum: No registered users and 43 guests