Standalone [1.3] tModLoader - A Modding API

Still looking forward to a GOG 1.3.4.4 Patch release (and have been eagerly watching the Gitlab activity), hoping it's progressing smoothly Jeckel!

I'm finishing up some testing and, depending on time constraints around another project I'm working on, I hope to have the GOG patches out tonight or tomorrow. :)
 
hey i just recently updated the tmodloader to 9.0.2, and now i get this message every time i try to load a world. i even tried making a new world, which worked fine, then loading it, which again gave this report. i've updated some of the mods i use, that have theirs updated, and ones that aren't, are disabled. which is why i tried making a new world, thinking maybe it had to do with something related to that, but no dice. i don't write codes or scripts so i don't know what the report is saying :/ so i don't know if it's to do with a specific mod, or i missed a file when i updated the tmodloader itself. if i could get someone to help that would be fantastic T_T

Method not found: 'Void Terraria.Player.VanillaUpdateAccessory(Terraria.Item, Boolean, Boolean ByRef, Boolean ByRef, Boolean ByRef)'.
at WingSlot.WingSlotPlayer.UpdateEquips(Boolean& wallSpeedBuff, Boolean& tileSpeedBuff, Boolean& tileRangeBuff)
at Terraria.ModLoader.PlayerHooks.UpdateEquips(Player player, Boolean& wallSpeedBuff, Boolean& tileSpeedBuff, Boolean& tileRangeBuff)
at Terraria.Player.UpdateEquips(Int32 i)
at Terraria.Player.Update(Int32 i)
at Terraria.WorldGen.do_playWorldCallBack(Object threadContext)
at Terraria.WorldGen.playWorldCallBack(Object threadContext)
 
hey i just recently updated the tmodloader to 9.0.2, and now i get this message every time i try to load a world. i even tried making a new world, which worked fine, then loading it, which again gave this report. i've updated some of the mods i use, that have theirs updated, and ones that aren't, are disabled. which is why i tried making a new world, thinking maybe it had to do with something related to that, but no dice. i don't write codes or scripts so i don't know what the report is saying :/ so i don't know if it's to do with a specific mod, or i missed a file when i updated the tmodloader itself.

Method not found: 'Void Terraria.Player.VanillaUpdateAccessory(Terraria.Item, Boolean, Boolean ByRef, Boolean ByRef, Boolean ByRef)'.
at WingSlot.WingSlotPlayer.UpdateEquips(Boolean& wallSpeedBuff, Boolean& tileSpeedBuff, Boolean& tileRangeBuff)
at Terraria.ModLoader.PlayerHooks.UpdateEquips(Player player, Boolean& wallSpeedBuff, Boolean& tileSpeedBuff, Boolean& tileRangeBuff)
at Terraria.Player.UpdateEquips(Int32 i)
at Terraria.Player.Update(Int32 i)
at Terraria.WorldGen.do_playWorldCallBack(Object threadContext)
at Terraria.WorldGen.playWorldCallBack(Object threadContext)
From the error, you have a mod called WingSlot that is bugging out. disable or delete it.
 
I have the problem with the new version where if I have it installed and try to get in the game it crashes even if i don't have any mods in the mods folder, and it takes like 5 minutes to even show it on the bar at the bottom. (I am on mac if this helps)
 
From the error, you have a mod called WingSlot that is bugging out. disable or delete it.


hmm that's what i was thinking. when i updated and all the other incompatible mods got disabled automatically, this one didn't so i wasn 't sure if that was the problem or not. now i know, thanks!
 
return spawnInfo.spawnTileY < Main.rockLayer && !Main.dayTime ? 0.5f : 0.5f;
If that makes the enemy spawn at daytime and surface layer how to i make it spawn at nighttime and surface layer
i trie nightTime but didnt work
 
Item.NewItem((int)npc.position.X, (int)npc.position.Y, npc.width, npc.height, ItemType("IronBar"), 5);
How do i make my enemy drop iron bars when killed because the code above doesnt work
 
There is a problem, when trying to compile a modification, Tmodloader knocks error: (24,29): error CS0103: The name "SoundID" does not exist in the current context
Code:
using System;
using Microsoft.Xna.Framework;
using Terraria;
using Terraria.ModLoader;

namespace IndustrialMagic.Items.Weapons
{
    public class Valnegdrag : ModItem
    {
        public override void SetDefaults()
        {
            item.name = "Valnegdrag";
            item.damage = 25;
            item.melee = true;
            item.width = 40;
            item.height = 40;
            item.toolTip = "This weapon of the king of ice, don't touch this";
            item.useTime = 15;
            item.useAnimation = 15;
            item.useStyle = 1;
            item.knockBack = 5;
            item.value = 10;
            item.rare = 3;
            item.UseSound = SoundID.Item1;
            item.autoReuse = true;
        }
        public override void OnHitNPC(Player player, NPC target, int damage, float knockback, bool crit)
        {
            target.AddBuff(44, 15);
        }
    }
}
Please, help
 
There is a problem, when trying to compile a modification, Tmodloader knocks error: (24,29): error CS0103: The name "SoundID" does not exist in the current context
Code:
using System;
using Microsoft.Xna.Framework;
using Terraria;
using Terraria.ModLoader;

namespace IndustrialMagic.Items.Weapons
{
    public class Valnegdrag : ModItem
    {
        public override void SetDefaults()
        {
            item.name = "Valnegdrag";
            item.damage = 25;
            item.melee = true;
            item.width = 40;
            item.height = 40;
            item.toolTip = "This weapon of the king of ice, don't touch this";
            item.useTime = 15;
            item.useAnimation = 15;
            item.useStyle = 1;
            item.knockBack = 5;
            item.value = 10;
            item.rare = 3;
            item.UseSound = SoundID.Item1;
            item.autoReuse = true;
        }
        public override void OnHitNPC(Player player, NPC target, int damage, float knockback, bool crit)
        {
            target.AddBuff(44, 15);
        }
    }
}
Please, help
Needs using Terraria.ID;
[doublepost=1481959091,1481959071][/doublepost]
How to use new SoundID system? How to use new saving methods?
Did you read the migration guide?
[doublepost=1481959157][/doublepost]
Item.NewItem((int)npc.position.X, (int)npc.position.Y, npc.width, npc.height, ItemType("IronBar"), 5);
How do i make my enemy drop iron bars when killed because the code above doesnt work
Look on the github wiki for the itemid of IronBar. Then look in examples for how to use vanilla items.
 
iron bar id is 22 its even on Official Terraria Wiki
error CS0103: The name 'ItemType' does not exist in the current context
Now thats the real problem but i dont know what it even means
 
iron bar id is 22 its even on Official Terraria Wiki
error CS0103: The name 'ItemType' does not exist in the current context
Now thats the real problem but i dont know what it even means
ItemType is a method in Mod. I'm not sure which class you are in, but if you are in a ModItem, you would reference the Mod with mod. So, mod.ItemType("Something"). But, for vanilla, you don't use that, you just do:
Item.NewItem((int)npc.position.X, (int)npc.position.Y, npc.width, npc.height, 22, 5);
or
Item.NewItem((int)npc.position.X, (int)npc.position.Y, npc.width, npc.height, ItemID.IronBar, 5); (This needs using Terraria.ID; at the top.)
 
Possible crash bug? Frequent crashes on Mac every 15 minutes or so.
Code:
Process:               Terraria.bin.osx [5715]
Path:                  /Users/USER/Library/Application Support/Steam/*/Terraria.app/Contents/MacOS/./Terraria.bin.osx
Identifier:            org.Terraria
Version:               1.0 (1)
Code Type:             X86 (Native)
Parent Process:        ??? [5711]
Responsible:           Terraria.bin.osx [5715]
User ID:               505

Date/Time:             2016-12-17 00:09:37.788 -0800
OS Version:            Mac OS X 10.11.3 (15D21)
Report Version:        11
Anonymous UUID:        1A1D26A8-1372-741E-D2C6-2964897C12E0

Sleep/Wake UUID:       24D6F12B-A932-4A54-8A40-0E2004A46128

Time Awake Since Boot: 53000 seconds
Time Since Wake:       2700 seconds

System Integrity Protection: enabled

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

Exception Type:        EXC_CRASH (SIGABRT)
Exception Codes:       0x0000000000000000, 0x0000000000000000
Exception Note:        EXC_CORPSE_NOTIFY

Application Specific Information:
abort() called

Application Specific Signatures:
Graphics kernel error: 0x00000002


Thread 0 Crashed:: MainThrd  Dispatch queue: com.apple.main-thread
0   libsystem_kernel.dylib            0x925cb58a __pthread_kill + 10
1   libsystem_pthread.dylib           0x98671448 pthread_kill + 101
2   libsystem_c.dylib                 0x985b4c34 abort + 156
3   libmonosgen-2.0.1.dylib           0x0017a50f mono_handle_native_sigsegv + 687
4   libmonosgen-2.0.1.dylib           0x001d2f5d sigabrt_signal_handler + 109
5   libsystem_platform.dylib          0x909e501b _sigtramp + 43
6   ???                               0xffffffff 0 + 4294967295
7   libmonosgen-2.0.1.dylib           0x001d2ef0 sigusr1_signal_handler + 272
8   libsystem_c.dylib                 0x985b4c34 abort + 156
9   libGPUSupport.dylib               0x9a29780c gpusKillClient + 108
10  com.apple.driver.AppleIntelHD3000GraphicsGLDriver    0x13f36cb6 GhalInterface::getCommandBuffer(unsigned char**, unsigned char**, unsigned int*, unsigned int*) + 166
11  com.apple.driver.AppleIntelHD3000GraphicsGLDriver    0x13f5cc40 GHAL3D::CPrivateCommandTransport::FlushCommandBuffer(GHAL3D::FLUSH_TYPE, unsigned char) + 304
12  com.apple.driver.AppleIntelHD3000GraphicsGLDriver    0x13f5c98b g575SubmitPacketsToken + 73
13  com.apple.driver.AppleIntelHD3000GraphicsGLDriver    0x142703c4 GetScratchBufferList(GLDContextRec*, DataBufferManager*) + 104
14  com.apple.driver.AppleIntelHD3000GraphicsGLDriver    0x142705c7 GetNewScratchBufferList(DataBufferManager*, GLDContextRec*) + 48
15  com.apple.driver.AppleIntelHD3000GraphicsGLDriver    0x142705f5 GetScratchItemSize + 17
16  com.apple.driver.AppleIntelHD3000GraphicsGLDriver    0x142cc301 glrWriteBufferData + 175
17  GLEngine                          0x9380dc7c glBufferSubData_Exec + 542
18  libGL.dylib                       0x995cbae8 glBufferSubData + 55
19  ???                               0x145cf068 0 + 341635176
20  ???                               0x55bdcafb 0 + 1438501627
21  ???                               0x1947b89d 0 + 424130717
22  ???                               0x55bdc950 0 + 1438501200
23  ???                               0x55bdc697 0 + 1438500503
24  ???                               0x55bdc5cc 0 + 1438500300
25  ???                               0x76cfdb30 0 + 1993333552
26  ???                               0x55bd46e0 0 + 1438467808
27  ???                               0x75919bac 0 + 1972476844
28  ???                               0x75c95198 0 + 1976127896
29  ???                               0x75c94a18 0 + 1976125976
30  ???                               0x75c95f1c 0 + 1976131356
31  ???                               0x856f51d4 0 + 2238665172
32  ???                               0x560d3480 0 + 1443705984
33  ???                               0x77bdf858 0 + 2008938584
34  ???                               0x77bdf784 0 + 2008938372
35  ???                               0x75d365ce 0 + 1976788430
36  ???                               0x75d3664c 0 + 1976788556
37  ???                               0x776f4bec 0 + 2003782636
38  ???                               0x557f9168 0 + 1434423656
39  ???                               0x557910b4 0 + 1433997492
40  ???                               0x557909c8 0 + 1433995720
41  ???                               0x529e6786 0 + 1386112902
42  ???                               0x529e5b24 0 + 1386109732
43  ???                               0x1058593b 0 + 274225467
44  ???                               0x0c131cf8 0 + 202579192
45  ???                               0x00b7601c 0 + 12017692
46  ???                               0x00b760fb 0 + 12017915
47  libmonosgen-2.0.1.dylib           0x000dcb2c mono_jit_runtime_invoke + 828
48  libmonosgen-2.0.1.dylib           0x0029b9ee mono_runtime_invoke + 126
49  libmonosgen-2.0.1.dylib           0x0029ffb8 mono_runtime_exec_main + 376
50  libmonosgen-2.0.1.dylib           0x002a0305 mono_runtime_run_main + 725
51  libmonosgen-2.0.1.dylib           0x0014adf5 mono_jit_exec + 149
52  libmonosgen-2.0.1.dylib           0x0014cfa3 mono_main + 8611
53  Terraria.bin.osx                  0x00092708 main + 856
54  Terraria.bin.osx                  0x000923a5 start + 53

Thread 1:
0   libsystem_kernel.dylib            0x925c4886 semaphore_wait_trap + 10
1   libmonosgen-2.0.1.dylib           0x003262ce mono_sem_wait + 30
2   libmonosgen-2.0.1.dylib           0x0029529a finalizer_thread + 74
3   libmonosgen-2.0.1.dylib           0x0026cf75 start_wrapper + 549
4   libmonosgen-2.0.1.dylib           0x0032bb3d inner_start_thread + 253
5   libsystem_pthread.dylib           0x9866fa26 _pthread_body + 138
6   libsystem_pthread.dylib           0x9866f99c _pthread_start + 155
7   libsystem_pthread.dylib           0x9866cf96 thread_start + 34

Thread 2:: Dispatch queue: com.apple.libdispatch-manager
0   libsystem_kernel.dylib            0x925cc812 kevent_qos + 10
1   libdispatch.dylib                 0x922c270e _dispatch_mgr_invoke + 234
2   libdispatch.dylib                 0x922c22e2 _dispatch_mgr_thread + 52

Thread 3:
0   libsystem_pthread.dylib           0x9866d0c5 pthread_mutex_lock + 78
1   libmonosgen-2.0.1.dylib           0x002c5894 mono_gc_set_skip_thread + 36
2   libmonosgen-2.0.1.dylib           0x00273565 async_invoke_thread + 2901
3   libmonosgen-2.0.1.dylib           0x0026cf75 start_wrapper + 549
4   libmonosgen-2.0.1.dylib           0x0032bb3d inner_start_thread + 253
5   libsystem_pthread.dylib           0x9866fa26 _pthread_body + 138
6   libsystem_pthread.dylib           0x9866f99c _pthread_start + 155
7   libsystem_pthread.dylib           0x9866cf96 thread_start + 34

Thread 4:
0   libsystem_kernel.dylib            0x925c489e semaphore_timedwait_trap + 10
1   libmonosgen-2.0.1.dylib           0x00326255 mono_sem_timedwait + 261
2   libmonosgen-2.0.1.dylib           0x002735ae async_invoke_thread + 2974
3   libmonosgen-2.0.1.dylib           0x0026cf75 start_wrapper + 549
4   libmonosgen-2.0.1.dylib           0x0032bb3d inner_start_thread + 253
5   libsystem_pthread.dylib           0x9866fa26 _pthread_body + 138
6   libsystem_pthread.dylib           0x9866f99c _pthread_start + 155
7   libsystem_pthread.dylib           0x9866cf96 thread_start + 34

Thread 5:
0   libsystem_kernel.dylib            0x925cb402 __psynch_cvwait + 10
1   libsystem_pthread.dylib           0x9866ff6b _pthread_cond_wait + 757
2   libsystem_pthread.dylib           0x98673cc0 pthread_cond_wait$UNIX2003 + 71
3   libmonosgen-2.0.1.dylib           0x0030467c _wapi_handle_timedwait_signal_handle + 620
4   libmonosgen-2.0.1.dylib           0x003046c8 _wapi_handle_wait_signal_handle + 40
5   libmonosgen-2.0.1.dylib           0x00317957 WaitForSingleObjectEx + 551
6   libmonosgen-2.0.1.dylib           0x002984f6 ves_icall_System_Threading_Monitor_Monitor_wait + 246
7   ???                               0x10581888 0 + 274208904
8   ???                               0x10581400 0 + 274207744
9   ???                               0x105812b4 0 + 274207412
10  ???                               0x10581274 0 + 274207348
11  ???                               0x00b75c9d 0 + 12016797
12  libmonosgen-2.0.1.dylib           0x000dcb2c mono_jit_runtime_invoke + 828
13  libmonosgen-2.0.1.dylib           0x0029b9ee mono_runtime_invoke + 126
14  libmonosgen-2.0.1.dylib           0x0029bb5c mono_runtime_delegate_invoke + 140
15  libmonosgen-2.0.1.dylib           0x0027326d async_invoke_thread + 2141
16  libmonosgen-2.0.1.dylib           0x0026cf75 start_wrapper + 549
17  libmonosgen-2.0.1.dylib           0x0032bb3d inner_start_thread + 253
18  libsystem_pthread.dylib           0x9866fa26 _pthread_body + 138
19  libsystem_pthread.dylib           0x9866f99c _pthread_start + 155
20  libsystem_pthread.dylib           0x9866cf96 thread_start + 34

Thread 6:
0   libsystem_kernel.dylib            0x925c489e semaphore_timedwait_trap + 10
1   libmonosgen-2.0.1.dylib           0x00326255 mono_sem_timedwait + 261
2   libmonosgen-2.0.1.dylib           0x002735ae async_invoke_thread + 2974
3   libmonosgen-2.0.1.dylib           0x0026cf75 start_wrapper + 549
4   libmonosgen-2.0.1.dylib           0x0032bb3d inner_start_thread + 253
5   libsystem_pthread.dylib           0x9866fa26 _pthread_body + 138
6   libsystem_pthread.dylib           0x9866f99c _pthread_start + 155
7   libsystem_pthread.dylib           0x9866cf96 thread_start + 34

Thread 7:
0   libsystem_kernel.dylib            0x925c489e semaphore_timedwait_trap + 10
1   libmonosgen-2.0.1.dylib           0x00326255 mono_sem_timedwait + 261
2   libmonosgen-2.0.1.dylib           0x002735ae async_invoke_thread + 2974
3   libmonosgen-2.0.1.dylib           0x0026cf75 start_wrapper + 549
4   libmonosgen-2.0.1.dylib           0x0032bb3d inner_start_thread + 253
5   libsystem_pthread.dylib           0x9866fa26 _pthread_body + 138
6   libsystem_pthread.dylib           0x9866f99c _pthread_start + 155
7   libsystem_pthread.dylib           0x9866cf96 thread_start + 34

Thread 8:
0   libsystem_kernel.dylib            0x925c489e semaphore_timedwait_trap + 10
1   libmonosgen-2.0.1.dylib           0x00326255 mono_sem_timedwait + 261
2   libmonosgen-2.0.1.dylib           0x002735ae async_invoke_thread + 2974
3   libmonosgen-2.0.1.dylib           0x0026cf75 start_wrapper + 549
4   libmonosgen-2.0.1.dylib           0x0032bb3d inner_start_thread + 253
5   libsystem_pthread.dylib           0x9866fa26 _pthread_body + 138
6   libsystem_pthread.dylib           0x9866f99c _pthread_start + 155
7   libsystem_pthread.dylib           0x9866cf96 thread_start + 34

Thread 9:
0   libsystem_kernel.dylib            0x925c489e semaphore_timedwait_trap + 10
1   libmonosgen-2.0.1.dylib           0x00326255 mono_sem_timedwait + 261
2   libmonosgen-2.0.1.dylib           0x002735ae async_invoke_thread + 2974
3   libmonosgen-2.0.1.dylib           0x0026cf75 start_wrapper + 549
4   libmonosgen-2.0.1.dylib           0x0032bb3d inner_start_thread + 253
5   libsystem_pthread.dylib           0x9866fa26 _pthread_body + 138
6   libsystem_pthread.dylib           0x9866f99c _pthread_start + 155
7   libsystem_pthread.dylib           0x9866cf96 thread_start + 34

Thread 10:
0   libsystem_kernel.dylib            0x925c489e semaphore_timedwait_trap + 10
1   libmonosgen-2.0.1.dylib           0x00326255 mono_sem_timedwait + 261
2   libmonosgen-2.0.1.dylib           0x002735ae async_invoke_thread + 2974
3   libmonosgen-2.0.1.dylib           0x0026cf75 start_wrapper + 549
4   libmonosgen-2.0.1.dylib           0x0032bb3d inner_start_thread + 253
5   libsystem_pthread.dylib           0x9866fa26 _pthread_body + 138
6   libsystem_pthread.dylib           0x9866f99c _pthread_start + 155
7   libsystem_pthread.dylib           0x9866cf96 thread_start + 34

Thread 11:
0   libsystem_kernel.dylib            0x925c489e semaphore_timedwait_trap + 10
1   libmonosgen-2.0.1.dylib           0x00326255 mono_sem_timedwait + 261
2   libmonosgen-2.0.1.dylib           0x002735ae async_invoke_thread + 2974
3   libmonosgen-2.0.1.dylib           0x0026cf75 start_wrapper + 549
4   libmonosgen-2.0.1.dylib           0x0032bb3d inner_start_thread + 253
5   libsystem_pthread.dylib           0x9866fa26 _pthread_body + 138
6   libsystem_pthread.dylib           0x9866f99c _pthread_start + 155
7   libsystem_pthread.dylib           0x9866cf96 thread_start + 34

Thread 12:
0   libsystem_kernel.dylib            0x925c489e semaphore_timedwait_trap + 10
1   libmonosgen-2.0.1.dylib           0x00326255 mono_sem_timedwait + 261
2   libmonosgen-2.0.1.dylib           0x002735ae async_invoke_thread + 2974
3   libmonosgen-2.0.1.dylib           0x0026cf75 start_wrapper + 549
4   libmonosgen-2.0.1.dylib           0x0032bb3d inner_start_thread + 253
5   libsystem_pthread.dylib           0x9866fa26 _pthread_body + 138
6   libsystem_pthread.dylib           0x9866f99c _pthread_start + 155
7   libsystem_pthread.dylib           0x9866cf96 thread_start + 34

Thread 13:
0   libsystem_kernel.dylib            0x925c489e semaphore_timedwait_trap + 10
1   libmonosgen-2.0.1.dylib           0x00326255 mono_sem_timedwait + 261
2   libmonosgen-2.0.1.dylib           0x002735ae async_invoke_thread + 2974
3   libmonosgen-2.0.1.dylib           0x0026cf75 start_wrapper + 549
4   libmonosgen-2.0.1.dylib           0x0032bb3d inner_start_thread + 253
5   libsystem_pthread.dylib           0x9866fa26 _pthread_body + 138
6   libsystem_pthread.dylib           0x9866f99c _pthread_start + 155
7   libsystem_pthread.dylib           0x9866cf96 thread_start + 34

Thread 14:
0   libsystem_kernel.dylib            0x925c489e semaphore_timedwait_trap + 10
1   libmonosgen-2.0.1.dylib           0x00326255 mono_sem_timedwait + 261
2   libmonosgen-2.0.1.dylib           0x002735ae async_invoke_thread + 2974
3   libmonosgen-2.0.1.dylib           0x0026cf75 start_wrapper + 549
4   libmonosgen-2.0.1.dylib           0x0032bb3d inner_start_thread + 253
5   libsystem_pthread.dylib           0x9866fa26 _pthread_body + 138
6   libsystem_pthread.dylib           0x9866f99c _pthread_start + 155
7   libsystem_pthread.dylib           0x9866cf96 thread_start + 34

Thread 15:
0   libsystem_kernel.dylib            0x925c489e semaphore_timedwait_trap + 10
1   libmonosgen-2.0.1.dylib           0x00326255 mono_sem_timedwait + 261
2   libmonosgen-2.0.1.dylib           0x002735ae async_invoke_thread + 2974
3   libmonosgen-2.0.1.dylib           0x0026cf75 start_wrapper + 549
4   libmonosgen-2.0.1.dylib           0x0032bb3d inner_start_thread + 253
5   libsystem_pthread.dylib           0x9866fa26 _pthread_body + 138
6   libsystem_pthread.dylib           0x9866f99c _pthread_start + 155
7   libsystem_pthread.dylib           0x9866cf96 thread_start + 34

Thread 16:
0   libsystem_kernel.dylib            0x925c489e semaphore_timedwait_trap + 10
1   libmonosgen-2.0.1.dylib           0x00326255 mono_sem_timedwait + 261
2   libmonosgen-2.0.1.dylib           0x002735ae async_invoke_thread + 2974
3   libmonosgen-2.0.1.dylib           0x0026cf75 start_wrapper + 549
4   libmonosgen-2.0.1.dylib           0x0032bb3d inner_start_thread + 253
5   libsystem_pthread.dylib           0x9866fa26 _pthread_body + 138
6   libsystem_pthread.dylib           0x9866f99c _pthread_start + 155
7   libsystem_pthread.dylib           0x9866cf96 thread_start + 34

Thread 17:
0   libsystem_kernel.dylib            0x925c489e semaphore_timedwait_trap + 10
1   libmonosgen-2.0.1.dylib           0x00326255 mono_sem_timedwait + 261
2   libmonosgen-2.0.1.dylib           0x002735ae async_invoke_thread + 2974
3   libmonosgen-2.0.1.dylib           0x0026cf75 start_wrapper + 549
4   libmonosgen-2.0.1.dylib           0x0032bb3d inner_start_thread + 253
5   libsystem_pthread.dylib           0x9866fa26 _pthread_body + 138
6   libsystem_pthread.dylib           0x9866f99c _pthread_start + 155
7   libsystem_pthread.dylib           0x9866cf96 thread_start + 34

Thread 18:
0   libsystem_kernel.dylib            0x925c489e semaphore_timedwait_trap + 10
1   libmonosgen-2.0.1.dylib           0x00326255 mono_sem_timedwait + 261
2   libmonosgen-2.0.1.dylib           0x002735ae async_invoke_thread + 2974
3   libmonosgen-2.0.1.dylib           0x0026cf75 start_wrapper + 549
4   libmonosgen-2.0.1.dylib           0x0032bb3d inner_start_thread + 253
5   libsystem_pthread.dylib           0x9866fa26 _pthread_body + 138
6   libsystem_pthread.dylib           0x9866f99c _pthread_start + 155
7   libsystem_pthread.dylib           0x9866cf96 thread_start + 34

Thread 19:: com.apple.audio.IOThread.client
0   libsystem_kernel.dylib            0x925c484a mach_msg_trap + 10
1   libsystem_kernel.dylib            0x925c3c34 mach_msg + 68
2   com.apple.audio.CoreAudio         0x94241b44 HALB_MachPort::SendMessageWithReply(unsigned int, unsigned int, unsigned long, unsigned long, mach_msg_header_t*, bool, unsigned int) + 140
3   com.apple.audio.CoreAudio         0x9423ad52 HALB_MachPort::SendSimpleMessageWithSimpleReply(unsigned int, unsigned int, int, int&, bool, unsigned int) + 72
4   com.apple.audio.CoreAudio         0x942391c0 HALC_ProxyIOContext::IOWorkLoop() + 1392
5   com.apple.audio.CoreAudio         0x94238b34 HALC_ProxyIOContext::IOThreadEntry(void*) + 156
6   com.apple.audio.CoreAudio         0x94244c8c ___ZN19HALC_ProxyIOContextC2Emj_block_invoke + 20
7   com.apple.audio.CoreAudio         0x94238a59 HALB_IOThread::Entry(void*) + 71
8   libsystem_pthread.dylib           0x9866fa26 _pthread_body + 138
9   libsystem_pthread.dylib           0x9866f99c _pthread_start + 155
10  libsystem_pthread.dylib           0x9866cf96 thread_start + 34

Thread 20:: IOPollingHelperThread
0   libsystem_kernel.dylib            0x925cc7da kevent + 10
1   steamclient.dylib                 0x1152ef50 OSXHelpers::CIOPollingHelper::RealRun() + 154
2   libtier0_s.dylib                  0x1271d823 CatchAndWriteContext_t::Invoke() + 159
3   libtier0_s.dylib                  0x1271d16b CatchAndWriteMiniDump_Impl(CatchAndWriteContext_t&) + 214
4   libtier0_s.dylib                  0x1271d252 CatchAndWriteMiniDumpExForVoidPtrFn + 87
5   libtier0_s.dylib                  0x1271d27b CatchAndWriteMiniDumpForVoidPtrFn + 35
6   steamclient.dylib                 0x1152eea5 OSXHelpers::CIOPollingHelper::Run() + 41
7   libtier0_s.dylib                  0x12721ee2 SteamThreadTools::CThread::ThreadExceptionWrapper(void*) + 16
8   libtier0_s.dylib                  0x1271d823 CatchAndWriteContext_t::Invoke() + 159
9   libtier0_s.dylib                  0x1271d16b CatchAndWriteMiniDump_Impl(CatchAndWriteContext_t&) + 214
10  libtier0_s.dylib                  0x1271d252 CatchAndWriteMiniDumpExForVoidPtrFn + 87
11  libtier0_s.dylib                  0x1271d27b CatchAndWriteMiniDumpForVoidPtrFn + 35
12  libtier0_s.dylib                  0x12721e56 SteamThreadTools::CThread::ThreadProc(void*) + 238
13  libsystem_pthread.dylib           0x9866fa26 _pthread_body + 138
14  libsystem_pthread.dylib           0x9866f99c _pthread_start + 155
15  libsystem_pthread.dylib           0x9866cf96 thread_start + 34

Thread 21:
0   libsystem_kernel.dylib            0x925cb7e6 __semwait_signal + 10
1   libsystem_c.dylib                 0x985d48cd nanosleep$UNIX2003 + 218
2   libmonosgen-2.0.1.dylib           0x00319acc SleepEx + 316
3   libmonosgen-2.0.1.dylib           0x00270b18 monitor_thread + 120
4   libmonosgen-2.0.1.dylib           0x0026cf75 start_wrapper + 549
5   libmonosgen-2.0.1.dylib           0x0032bb3d inner_start_thread + 253
6   libsystem_pthread.dylib           0x9866fa26 _pthread_body + 138
7   libsystem_pthread.dylib           0x9866f99c _pthread_start + 155
8   libsystem_pthread.dylib           0x9866cf96 thread_start + 34

Thread 22:
0   libsystem_kernel.dylib            0x925cb402 __psynch_cvwait + 10
1   libsystem_pthread.dylib           0x9866ff6b _pthread_cond_wait + 757
2   libsystem_pthread.dylib           0x98673cc0 pthread_cond_wait$UNIX2003 + 71
3   libmonosgen-2.0.1.dylib           0x0030467c _wapi_handle_timedwait_signal_handle + 620
4   libmonosgen-2.0.1.dylib           0x003046c8 _wapi_handle_wait_signal_handle + 40
5   libmonosgen-2.0.1.dylib           0x00317957 WaitForSingleObjectEx + 551
6   libmonosgen-2.0.1.dylib           0x002984f6 ves_icall_System_Threading_Monitor_Monitor_wait + 246
7   ???                               0x10581888 0 + 274208904
8   ???                               0x10581400 0 + 274207744
9   ???                               0x105812b4 0 + 274207412
10  ???                               0x105812f4 0 + 274207476
11  ???                               0x00b75c9d 0 + 12016797
12  libmonosgen-2.0.1.dylib           0x000dcb2c mono_jit_runtime_invoke + 828
13  libmonosgen-2.0.1.dylib           0x0029b9ee mono_runtime_invoke + 126
14  libmonosgen-2.0.1.dylib           0x0029bb5c mono_runtime_delegate_invoke + 140
15  libmonosgen-2.0.1.dylib           0x0027326d async_invoke_thread + 2141
16  libmonosgen-2.0.1.dylib           0x0026cf75 start_wrapper + 549
17  libmonosgen-2.0.1.dylib           0x0032bb3d inner_start_thread + 253
18  libsystem_pthread.dylib           0x9866fa26 _pthread_body + 138
19  libsystem_pthread.dylib           0x9866f99c _pthread_start + 155
20  libsystem_pthread.dylib           0x9866cf96 thread_start + 34

Thread 23:: com.apple.NSEventThread
0   libsystem_kernel.dylib            0x925c484a mach_msg_trap + 10
1   libsystem_kernel.dylib            0x925c3c34 mach_msg + 68
2   com.apple.CoreGraphics            0x9588f41a CGSSnarfAndDispatchDatagrams + 740
3   com.apple.CoreGraphics            0x9588ef64 CGSGetNextEventRecordInternal + 78
4   com.apple.CoreGraphics            0x9588eecf CGEventCreateNextEvent + 34
5   com.apple.HIToolbox               0x9d4ab53b PullEventsFromWindowServerOnConnection(unsigned int, unsigned char, __CFMachPortBoost*) + 83
6   com.apple.HIToolbox               0x9d4ab4c3 MessageHandler(__CFMachPort*, void*, long, void*) + 55
7   com.apple.CoreFoundation          0x93b3b6fe __CFMachPortPerform + 270
8   com.apple.CoreFoundation          0x93b3b5e5 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION__ + 53
9   com.apple.CoreFoundation          0x93b3b550 __CFRunLoopDoSource1 + 512
10  com.apple.CoreFoundation          0x93b2c4b9 __CFRunLoopRun + 2649
11  com.apple.CoreFoundation          0x93b2b7f6 CFRunLoopRunSpecific + 390
12  com.apple.CoreFoundation          0x93b2b65b CFRunLoopRunInMode + 123
13  com.apple.AppKit                  0x975976aa _NSEventThread + 291
14  libsystem_pthread.dylib           0x9866fa26 _pthread_body + 138
15  libsystem_pthread.dylib           0x9866f99c _pthread_start + 155
16  libsystem_pthread.dylib           0x9866cf96 thread_start + 34

Thread 24:
0   libsystem_kernel.dylib            0x925cbd76 __workq_kernreturn + 10
1   libsystem_pthread.dylib           0x9866f52d _pthread_wqthread + 1289
2   libsystem_pthread.dylib           0x9866cf72 start_wqthread + 34

Thread 25:

Thread 0 crashed with X86 Thread State (32-bit):
  eax: 0x00000000  ebx: 0x7ab7e6cc  ecx: 0xbff6d31c  edx: 0x00000000
  edi: 0xa36dc000  esi: 0x00000006  ebp: 0xbff6d338  esp: 0xbff6d31c
   ss: 0x00000023  efl: 0x00000206  eip: 0x925cb58a   cs: 0x0000000b
   ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
  cr2: 0xa36dd8d4
 
Logical CPU:     0
Error Code:      0x00080148
Trap Number:     132


Binary Images:
   0x90000 -    0x93ff7 +Terraria.bin.osx (???) <86E404C3-562C-391F-BCE0-3BCBFF33751A> /Users/USER/Library/Application Support/Steam/*/Terraria.app/Contents/MacOS/Terraria.bin.osx
   0x98000 -    0xb9ffb +gameoverlayrenderer.dylib (1) <B8F66D5E-8D54-3F41-8AF6-3A6841F32212> /Users/USER/Library/Application Support/Steam/*/gameoverlayrenderer.dylib
   0xcb000 -    0xccffb +steamloader.dylib (0) <7D581E42-6109-3883-8EE0-0C8160E5034A> /Users/USER/Library/Application Support/Steam/*/steamloader.dylib
   0xcf000 -   0x412ff2 +libmonosgen-2.0.1.dylib (2) <B525BDBB-3B29-39BE-9878-4706B7EA86FD> /Users/USER/Library/Application Support/Steam/*/Terraria.app/Contents/MacOS/osx/libmonosgen-2.0.1.dylib
0xc3e9000 -  0xc4a2fe1 +libSDL2-2.0.0.dylib (3.1) <BB1424C4-F3B6-3CC0-80E7-326A24CC44B2> /Users/USER/Library/Application Support/Steam/*/Terraria.app/Contents/MacOS/osx/libSDL2-2.0.0.dylib
0xc506000 -  0xc509fff  com.apple.ForceFeedback (1.0.6 - 1.0.6) <160FCF01-1E1D-3BF5-90D7-0B7305D28355> /System/Library/Frameworks/ForceFeedback.framework/Versions/A/ForceFeedback
0xf370000 -  0xf370ffd +cl_kernels (???) <08232B5D-4D45-4938-B39A-BCC30ACCF2F0> cl_kernels
0x104eb000 - 0x104faff3 +libSDL2_image-2.0.0.dylib (1) <290594FB-FB31-3367-87EB-3BBB74CF0576> /Users/USER/Library/Application Support/Steam/*/Terraria.app/Contents/MacOS/osx/libSDL2_image-2.0.0.dylib
0x10502000 - 0x10558ff9 +libopenal.1.dylib (1.16) <F8B4FE55-B660-3C59-9BCF-F456815EEB4B> /Users/USER/Library/Application Support/Steam/*/Terraria.app/Contents/MacOS/osx/libopenal.1.dylib
0x105ab000 - 0x105affff  com.apple.audio.AppleHDAHALPlugIn (272.51.3 - 272.51.3) <CDC37046-A074-3AE8-91E5-F74FFCFAFA3B> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Contents/MacOS/AppleHDAHALPlugIn
0x1062d000 - 0x10776ff7  com.apple.audio.units.Components (1.13 - 1.13) <4B80F0F3-2980-3CB9-954A-1B3F2FFB6A34> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
0x10b4c000 - 0x10b5afff +CSteamworks (???) <18F976A3-B403-37CC-8E74-2FFBCEC4ADF7> /Users/USER/Library/Application Support/Steam/*/Terraria.app/Contents/MacOS/osx/CSteamworks
0x10b7a000 - 0x10b81ff7 +libsteam_api.dylib (1) <DCC08A58-B010-3AB4-A238-728698E315E9> /Users/USER/Library/Application Support/Steam/*/Terraria.app/Contents/MacOS/osx/libsteam_api.dylib
0x10b8c000 - 0x11a4afdb +steamclient.dylib (1) <3FDB7A6A-3486-31A6-94F2-3DD1AC63FB23> /Users/USER/Library/Application Support/Steam/*/steamclient.dylib
0x12716000 - 0x1272fff3 +libtier0_s.dylib (1) <57F3ECFE-2E3E-3717-BA22-0CA605876BAF> /Users/USER/Library/Application Support/Steam/*/libtier0_s.dylib
0x12744000 - 0x12772ff7 +libvstdlib_s.dylib (1) <6880955C-BADD-3EBA-89B3-16E005706BD1> /Users/USER/Library/Application Support/Steam/*/libvstdlib_s.dylib
0x12795000 - 0x127a5ffb +libaudio.dylib (1) <F3A44B43-279E-30B6-8609-F09532E92936> /Users/USER/Library/Application Support/Steam/*/libaudio.dylib
0x127b7000 - 0x127dffff  com.apple.audio.OpenAL (1.8 - 1.8) <6BE4744D-234D-345F-8A25-01F92199DE23> /System/Library/Frameworks/OpenAL.framework/Versions/A/OpenAL
0x127f1000 - 0x12803ff3 +crashhandler.dylib (1) <78B5D736-5653-3E08-A335-A72EE0906157> /Users/USER/Library/Application Support/Steam/*/crashhandler.dylib
0x12815000 - 0x1281dff3 +com.googlecode.google-breakpad (1.0) <72F854D3-86EA-3B84-8FA3-EC59CC805E40> /Users/USER/Library/Application Support/Steam/*/Breakpad.framework/Versions/A/Breakpad
0x1282a000 - 0x12838fff +breakpadUtilities.dylib (1) <B0CD8254-F2F3-3E5B-884F-E43E983E6D04> /Users/USER/Library/Application Support/Steam/*/Breakpad.framework/Versions/A/Resources/breakpadUtilities.dylib
0x12842000 - 0x12acefff +libsteam.dylib (1) <A6A16138-7D97-37DC-A7A6-778B9F374DCE> /Users/USER/Library/Application Support/Steam/*/libsteam.dylib
0x12c9d000 - 0x12cd2fff +libmojoshader.dylib (0) <99DE485C-40FC-3F95-A353-98279CE164A0> /Users/USER/Library/Application Support/Steam/*/Terraria.app/Contents/MacOS/osx/libmojoshader.dylib
0x13f34000 - 0x142eeff7  com.apple.driver.AppleIntelHD3000GraphicsGLDriver (10.0.40 - 10.0.0) <7AAA2E57-53CA-3EAA-B620-3F575476CF7B> /System/Library/Extensions/AppleIntelHD3000GraphicsGLDriver.bundle/Contents/MacOS/AppleIntelHD3000GraphicsGLDriver
0x8fedf000 - 0x8ff1358f  dyld (360.19) <8F9518A3-884D-35FF-8FD9-FB149B7F1BF2> /usr/lib/dyld
0x90010000 - 0x90233ff7  com.apple.CoreImage (11.2.0 - 366.2.7) <B99CF403-742E-33F8-AFA2-D9A17F1C12FA> /System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage
0x90285000 - 0x9036bff7  unorm8_rgba.dylib (2.6.4.1) <157E662C-A982-3BC5-922F-B6D5A6200BE2> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/unorm8_rgba.dylib
0x9036c000 - 0x9037fff7  libcmph.dylib (6) <7FEE63DB-D02D-3E53-9A0C-2787A49D125C> /usr/lib/libcmph.dylib
0x9046f000 - 0x9048dffb  libresolv.9.dylib (60) <5AF8F512-BACE-3BD7-8D21-E0AAEBF07FF9> /usr/lib/libresolv.9.dylib
0x9048e000 - 0x9049ffff  libbsm.0.dylib (34) <FA298D27-CA59-3106-A3F7-33F91576FA13> /usr/lib/libbsm.0.dylib
0x904a0000 - 0x904aafff  libsystem_notify.dylib (150.20.3) <07A9536A-D1CB-3EBC-885F-E02E579E2C81> /usr/lib/system/libsystem_notify.dylib
0x904ab000 - 0x904affff  libheimdal-asn1.dylib (453.20.2) <4C604BEC-314B-334A-86E8-F89F0B332551> /usr/lib/libheimdal-asn1.dylib
0x904b0000 - 0x90558fff  libCoreStorage.dylib (517.20.1) <72BE7F79-DC35-30B7-AFD0-418EEE83B980> /usr/lib/libCoreStorage.dylib
0x9055b000 - 0x90589ff7  libarchive.2.dylib (33.20.2) <FB7EA848-C053-3016-9317-BEB146619816> /usr/lib/libarchive.2.dylib
0x9058a000 - 0x905d9fff  com.apple.opencl (2.6.9 - 2.6.9) <0A764275-D76D-3CAF-BD04-27E0330FFD67> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
0x905dd000 - 0x90703ffb  libsqlite3.dylib (216.4) <72C3FD3D-27D8-3B2F-9472-AAAA2DFC1835> /usr/lib/libsqlite3.dylib
0x9070c000 - 0x907fcffb  com.apple.DiskImagesFramework (10.11.3 - 417.2) <64A655F5-C9A3-3FB2-AC65-089D8D898173> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
0x907fd000 - 0x909dffff  com.apple.QuartzCore (1.11 - 410.14) <0E485D7F-1819-3845-B884-4958304C53C6> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
0x909e0000 - 0x909e6ff3  libsystem_platform.dylib (74.10.3) <9987B1C7-C658-3463-A63B-D9D011375156> /usr/lib/system/libsystem_platform.dylib
0x90f59000 - 0x91059fff  libFontParser.dylib (158.4) <2461D34B-3DD9-33FE-B045-E02F0D3A6560> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
0x911d0000 - 0x912d4fff  libJP2.dylib (1442) <7A31DA72-CDC5-31A3-A55F-EFD954B36480> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
0x912d5000 - 0x91348ffb  com.apple.ApplicationServices.ATS (377 - 394.3) <AEB6AEAD-7C42-3583-8AFD-FC0BD93443D4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
0x91349000 - 0x9134bff3  com.apple.EFILogin (2.0 - 2) <CB406C7B-EA04-3703-80C4-F21658D6CFBC> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
0x9134d000 - 0x91370fff  libJPEG.dylib (1442) <EC4F335E-E238-3BE6-8AC4-1F4778F363C6> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
0x91371000 - 0x9139afff  libRIP.A.dylib (948) <5A6DDE59-761F-3AAB-B2E3-25FF32974B9C> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
0x913a7000 - 0x913a9fff  libCVMSPluginSupport.dylib (12.0.40.6) <FB87BAAF-B4AA-3577-A797-963A987BC7B0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
0x913aa000 - 0x91411fff  libcorecrypto.dylib (335.20.1) <FC26F6D2-1711-3BB7-833D-3099B56DEBFA> /usr/lib/system/libcorecrypto.dylib
0x91412000 - 0x9156bff7  libBLAS.dylib (1159) <01B7578D-121A-3F03-8BC1-D40E929820BC> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
0x9156c000 - 0x91574fff  libcldcpuengine.dylib (2.6.4.1) <8BAE139D-FAB0-3EA0-8C17-82D946D5D6CC> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengine.dylib
0x91580000 - 0x915f5fff  com.apple.SearchKit (1.4.0 - 1.4.0) <BD28A818-54CF-38D6-84EC-FE537D34FA1F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
0x915f6000 - 0x915f6fff  com.apple.Cocoa (6.11 - 22) <F7EA3B1D-27FB-3036-84AB-B1C1F3167A3C> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
0x915f7000 - 0x91604fff  com.apple.HelpData (2.1.4 - 90) <E7B14711-E2EE-31E9-AE9D-8ADA1C214A69> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
0x917be000 - 0x917c1ff7  com.apple.help (1.3.3 - 46) <57B9ABC8-46CC-3292-856F-02772F5DD525> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
0x917c2000 - 0x917d8fe7  libcompression.dylib (25) <BA42C530-BAB9-32B4-8FFE-59E28565727B> /usr/lib/libcompression.dylib
0x91dcb000 - 0x91dd9ff7  libz.1.dylib (61.20.1) <34A8BA7F-AA56-322E-AC39-ADF8DDE53FF1> /usr/lib/libz.1.dylib
0x91dda000 - 0x91ddcfff  com.apple.securityhi (9.0 - 55006) <F8CC17D3-C461-38E9-AA7B-1C782DB4273A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
0x91ddd000 - 0x91dddfff  com.apple.Accelerate (1.10 - Accelerate 1.10) <ADE3118D-C164-3532-ADDA-DA8DA58CAA66> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
0x91dde000 - 0x91e3aff7  libTIFF.dylib (1442) <1A651B31-0698-3DB7-AA1E-6FDD328EE252> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
0x91e45000 - 0x91e84ffb  libGLImage.dylib (12.0.40.6) <85DAA7E2-E3B3-3107-9790-EE688677AD66> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
0x91e85000 - 0x91e88ff7  libdyld.dylib (360.19) <37C43230-96C4-31CA-B725-BEA1CE6496AB> /usr/lib/system/libdyld.dylib
0x91e89000 - 0x91ef4ff7  com.apple.framework.CoreWiFi (11.0 - 1101.20) <B6567EFC-F3FA-3290-BC80-F341CA7AA7A4> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi
0x91ef5000 - 0x91f3eff7  com.apple.coreservices.SharedFileList (24.4 - 24.5) <B956DA81-45B9-3DDB-919A-CB8EB20EE91E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList
0x91f3f000 - 0x91f40fff  libSystem.B.dylib (1226.10.1) <AC53C716-6C51-3035-B700-7889625F7DF4> /usr/lib/libSystem.B.dylib
0x91f41000 - 0x91f4fff3  com.apple.opengl (12.0.40 - 12.0.40) <CD5CC1BC-17A5-321F-89DB-3392938E4391> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
0x91f50000 - 0x91fb9ffb  libsystem_network.dylib (583.20.10) <95879123-7EAF-3F0D-AF87-2495A59B0F89> /usr/lib/system/libsystem_network.dylib
0x91fba000 - 0x91fbafff  libunc.dylib (29) <94FDAC72-06B2-3C73-9963-417ECB3D0645> /usr/lib/system/libunc.dylib
0x91fbb000 - 0x91ffefff  libGLU.dylib (12.0.40.6) <47E1CD2C-8336-357E-B0F3-D2083E773949> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
0x91fff000 - 0x92003fff  com.apple.CommonPanels (1.2.6 - 96) <E960D411-EF1D-3135-A937-C06C05E91C02> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
0x92004000 - 0x92067fff  com.apple.CoreServices.OSServices (728.6 - 728.6) <EA3CFDEB-02B3-342A-87F0-4F7C284C6F79> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
0x92068000 - 0x92071ffb  com.apple.CommonAuth (4.0 - 2.0) <F703279C-3067-32C6-A30C-C1E76F9AF74C> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
0x92072000 - 0x9208bfff  com.apple.Kerberos (3.0 - 1) <68828DF9-B75F-33C3-89ED-7BAFBDF4FE56> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
0x9208c000 - 0x92094ffb  libsystem_dnssd.dylib (625.20.4) <452CA454-8C8C-3BCE-930A-0A97B4032C83> /usr/lib/system/libsystem_dnssd.dylib
0x9218c000 - 0x92277feb  libvMisc.dylib (563.4) <3BB7E799-9C17-3353-A7E3-4B415ACE9C97> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
0x92280000 - 0x922bafff  com.apple.MediaKit (16 - 809) <737F2EA6-8A73-3AAD-8D82-64A8A7E57578> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
0x922bb000 - 0x922e5fff  libdispatch.dylib (501.20.1) <2D8CFF67-AE30-3F49-9688-541D6BD010CE> /usr/lib/system/libdispatch.dylib
0x923a1000 - 0x923deff7  com.apple.DebugSymbols (132 - 132) <0519F758-84BD-3084-8A78-B208F420218B> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
0x92440000 - 0x92476ff7  com.apple.CoreVideo (1.8 - 191.2) <938A0EA6-4ED5-3A69-87A5-073765153FC8> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
0x92477000 - 0x9247dfff  com.apple.speech.recognition.framework (5.1.1 - 5.1.1) <9B432ECA-8494-33CC-8734-B4340DDFEEA4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
0x9247e000 - 0x9248dff7  libxar.1.dylib (302) <B5FC05C6-3E06-3E92-A8E5-C7733D659F6F> /usr/lib/libxar.1.dylib
0x92496000 - 0x924a3ff7  libbz2.1.0.dylib (38) <5AF36C82-D418-3B72-9358-4890779B6DC9> /usr/lib/libbz2.1.0.dylib
0x924a7000 - 0x92502fff  com.apple.print.framework.PrintCore (11.2 - 472.2) <0A602106-CE97-3AAF-B741-FB4EFA4D5D55> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
0x92503000 - 0x92505ffb  libsystem_secinit.dylib (20) <DD1B99C0-690A-3173-AF96-A960F544475F> /usr/lib/system/libsystem_secinit.dylib
0x92506000 - 0x92529ff3  libc++abi.dylib (125) <20843323-D228-3A86-9F23-8FDC64B40211> /usr/lib/libc++abi.dylib
0x9252a000 - 0x9253dfff  com.apple.Sharing (442.9.1 - 442.9.1) <7E576D03-9DAC-3443-9677-7B96DF4A8450> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
0x9253e000 - 0x92546fff  com.apple.CoreServices.FSEvents (1223.10.1 - 1223.10.1) <BEB2E1B7-753C-3923-9AEB-6D9BC58818EE> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents
0x92547000 - 0x9254cff7  libmacho.dylib (875.1) <036B7BFD-C804-3DD5-8EBE-1D256642382F> /usr/lib/system/libmacho.dylib
0x92599000 - 0x925b0ffb  libsystem_coretls.dylib (83.20.8) <E10E6575-C8E4-3D58-BBE7-11217C0F2B79> /usr/lib/system/libsystem_coretls.dylib
0x925b1000 - 0x925d1ffb  libsystem_kernel.dylib (3248.30.4) <98207959-1604-385F-A42B-D8AFC8FE9985> /usr/lib/system/libsystem_kernel.dylib
0x92fc6000 - 0x93282fff  com.apple.CoreData (120 - 641.3) <C92F0F24-9CF8-35CC-ADA4-DD532D67AEB7> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
0x93283000 - 0x933c5fef  libvDSP.dylib (563.4) <7D6050AB-4326-3804-B9CE-E1B8EF6A4527> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
0x933c6000 - 0x933f7ff3  libtidy.A.dylib (15.17) <78D25812-0698-3802-B76B-0D0041BB9311> /usr/lib/libtidy.A.dylib
0x933f8000 - 0x9341afff  com.apple.ProtectedCloudStorage (1.0 - 1) <D64CC204-1B68-3115-BFF2-3B3A8176C561> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/ProtectedCloudStorage
0x934d1000 - 0x93769ff7  com.apple.security (7.0 - 57337.20.44) <BAE2D763-2BFF-3729-8EC8-3B058CF8A2A8> /System/Library/Frameworks/Security.framework/Versions/A/Security
0x937c9000 - 0x93979ffb  GLEngine (12.0.40.6) <09D1306D-5EB6-36EC-866F-1528FF5FAF83> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLEngine.bundle/GLEngine
0x9397a000 - 0x9397dfff  libpam.2.dylib (20) <A5D72430-8F29-3E9A-AE11-087ED0CB7506> /usr/lib/libpam.2.dylib
0x9397e000 - 0x93981ff7  libsystem_sandbox.dylib (460.30.1) <72C07083-0974-30CF-8209-921D80C0E124> /usr/lib/system/libsystem_sandbox.dylib
0x93985000 - 0x93996fff  libsystem_trace.dylib (201.10.3) <79A49A61-EE42-3B35-A3B6-87104BA973F5> /usr/lib/system/libsystem_trace.dylib
0x93997000 - 0x939bfffb  libxpc.dylib (756.20.4) <383A5544-1BED-3DBE-8C52-7AFE84758268> /usr/lib/system/libxpc.dylib
0x939c3000 - 0x93ab4ff3  libiconv.2.dylib (44) <4EB465C8-E736-3DBD-9F62-74B73B66A84B> /usr/lib/libiconv.2.dylib
0x93ab5000 - 0x93f49fff  com.apple.CoreFoundation (6.9 - 1256.14) <91D912EE-C4FC-3982-AFC8-BFBD1ECBD99F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x93f4a000 - 0x93feaffb  com.apple.QD (3.12 - 302) <0EE32F41-8F2B-3DFD-BB82-DD55823E2A53> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
0x94008000 - 0x94032fff  libxslt.1.dylib (14.1) <17DA51F0-E551-34C1-8C28-EC0B013D8888> /usr/lib/libxslt.1.dylib
0x94227000 - 0x9427bffb  com.apple.audio.CoreAudio (4.3.0 - 4.3.0) <DDAAF070-CB59-301B-B454-A9CD1D356F58> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
0x9427c000 - 0x9427efff  libsystem_configuration.dylib (802.20.7) <A54B0743-DF8D-3163-9285-E96EF7B7FDA9> /usr/lib/system/libsystem_configuration.dylib
0x9427f000 - 0x942e2fff  com.apple.SystemConfiguration (1.14 - 1.14) <85997B7C-347F-318B-9DB8-269959EC28DD> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
0x942e3000 - 0x942eeff7  libChineseTokenizer.dylib (16) <06359086-95ED-3C6D-A794-DAB30171EF16> /usr/lib/libChineseTokenizer.dylib
0x94621000 - 0x94637ff3  libLinearAlgebra.dylib (1159) <1E89B7DB-1E02-30C9-AE4A-53F5007DF425> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib
0x94638000 - 0x94644ff7  libkxld.dylib (3248.30.4) <1B2DF6C9-CD1D-3D97-BE15-CB126AFAA6CF> /usr/lib/system/libkxld.dylib
0x94645000 - 0x94647fff  com.apple.loginsupport (1.0 - 1) <871D1582-0EEB-3223-8BA7-5B708B78A0BB> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport
0x94648000 - 0x9464afff  libsystem_coreservices.dylib (19.2) <360AF758-E51B-3B37-A9CF-CA6958292A11> /usr/lib/system/libsystem_coreservices.dylib
0x94674000 - 0x94a4eff7  libLAPACK.dylib (1159) <57C95946-6C2D-33D5-948B-1E2CA58F6BD0> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
0x94a4f000 - 0x94a5cff7  com.apple.speech.synthesis.framework (5.4.12 - 5.4.12) <77ECDE96-4EED-3845-9940-619FF1B624B0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
0x94a5d000 - 0x94a9eff7  libauto.dylib (186) <3729B54F-12F2-3802-A465-72F441AAD99E> /usr/lib/libauto.dylib
0x94a9f000 - 0x94aa0fff  com.apple.TrustEvaluationAgent (2.0 - 25) <7B6357BA-B41D-34A8-84D1-B30071C3FC34> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
0x94b08000 - 0x94b82ffb  com.apple.Heimdal (4.0 - 2.0) <8F612350-0742-38DA-80E9-44FF41B1E0D9> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
0x94b83000 - 0x94da1ffb  libicucore.A.dylib (551.41) <63CA5C15-7832-3780-8743-97A526D533F9> /usr/lib/libicucore.A.dylib
0x94da2000 - 0x94da4ffb  libCGXType.A.dylib (948) <247F4B0F-F197-3924-BEAC-D4BFE171119D> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
0x94ec1000 - 0x94f18ff7  com.apple.HIServices (1.22 - 549) <0C707175-7922-3B84-B21F-DDBABA6BAB36> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
0x9581e000 - 0x95827fff  com.apple.icloud.FindMyDevice (1.0 - 1) <B76F8547-A723-3239-B5A1-FAA2E3CCDDBE> /System/Library/PrivateFrameworks/FindMyDevice.framework/Versions/A/FindMyDevice
0x95828000 - 0x95c24ff3  com.apple.CoreGraphics (1.600.0 - 948) <4675B1F5-A558-3B5E-80FE-E056B7952369> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
0x95c25000 - 0x95c2eff3  com.apple.AppleSRP (5.0 - 1) <4680FF36-18AA-3D74-AB72-89D5CEEAB120> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
0x95c2f000 - 0x95c2ffff  libkeymgr.dylib (28) <E47E99AD-6392-3809-80B4-B87AD715641A> /usr/lib/system/libkeymgr.dylib
0x95c34000 - 0x95c51ff7  libCRFSuite.dylib (34) <5872C4CE-812E-3ABC-B78A-216A9AFD386B> /usr/lib/libCRFSuite.dylib
0x95c52000 - 0x95c53fff  libremovefile.dylib (41) <34560919-D43E-3D47-8C5B-FEC7480C071A> /usr/lib/system/libremovefile.dylib
0x95c54000 - 0x95c54fff  com.apple.ApplicationServices (48 - 48) <9FF928B3-6DD8-3316-9825-649C472F1020> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
0x95c55000 - 0x95c5efff  libcopyfile.dylib (127) <6BC8910D-4F89-3996-98D9-EDE91540A89D> /usr/lib/system/libcopyfile.dylib
0x95c5f000 - 0x95d5dff7  com.apple.LaunchServices (728.6 - 728.6) <8AAD1B0B-E0B7-39D6-869A-72208E7C8E97> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
0x95d5e000 - 0x95d62ffb  libGIF.dylib (1442) <2890826E-8230-3323-B72F-0CB06532A088> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
0x95d63000 - 0x96006fff  libmecabra.dylib (696.4) <7C5B69FE-105F-3F10-B253-89541BB3C73B> /usr/lib/libmecabra.dylib
0x96037000 - 0x9607fff7  libFontRegistry.dylib (155.1) <67E9D20F-8E24-309D-9F6E-B4C772555301> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
0x9610d000 - 0x96160fff  libstdc++.6.dylib (104.1) <649EF23E-4FEF-34DA-88DB-A7D4536AD3DF> /usr/lib/libstdc++.6.dylib
0x96161000 - 0x96164fff  com.apple.xpc.ServiceManagement (1.0 - 1) <03ED4E16-E94C-3C91-A7AA-5F1B84BE0A30> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
0x96165000 - 0x96259ff7  libxml2.2.dylib (29.2) <C3D380B4-4EB5-32D1-BB90-08D3372CC413> /usr/lib/libxml2.2.dylib
0x9625a000 - 0x9628bfff  com.apple.DictionaryServices (1.2 - 250) <C4716245-A942-31B0-8353-8CCA0C36605C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
0x9628c000 - 0x96355fff  com.apple.DiscRecording (9.0.1 - 9010.4.3) <5413E34A-76F5-3697-8B61-4CE7EEC1E736> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
0x973fc000 - 0x9743cff3  com.apple.AppleJPEG (1.0 - 1) <3219A29B-9465-335B-9D84-658ADC463781> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
0x9743d000 - 0x9743dfff  com.apple.audio.units.AudioUnit (1.13 - 1.13) <8F0B276F-9292-3FA5-B1ED-84B81C9C39B3> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
0x9743e000 - 0x98119ffb  com.apple.AppKit (6.9 - 1404.34) <8963DD10-06B6-3D8A-B101-4C6D2831609C> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
0x98210000 - 0x98220ff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <887B4D43-1F33-3ABF-9FB6-C64494870F4F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
0x98221000 - 0x98226ff3  com.apple.print.framework.Print (10.0 - 266) <186969B7-9DBB-3651-A545-4FB2B01C8381> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
0x98227000 - 0x98280fff  com.apple.AE (701 - 701) <AB7B3BE2-7F39-349C-AC6D-440D5A29359B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
0x98281000 - 0x98322fff  com.apple.ink.framework (10.9 - 214) <70C48EA8-969E-3D1E-9606-74BD0BA19DF9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
0x98323000 - 0x98395ffb  com.apple.framework.CoreWLAN (11.0 - 1101.20) <F01D8188-EF09-3244-953C-C4F4A9623F5F> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
0x98400000 - 0x9849efff  com.apple.ColorSync (4.9.0 - 4.9.0) <93BA9E74-AFEE-39F1-AD02-A03E0F1FFEE3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync
0x9849f000 - 0x984a3fff  libcache.dylib (75) <8F424A67-59E0-3921-A032-5ECD848C23A7> /usr/lib/system/libcache.dylib
0x984a4000 - 0x9854bfff  com.apple.Metadata (10.7.0 - 972.16) <2EAC7345-8CB4-3CC2-AFE6-6F4C0BCE2754> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
0x9854c000 - 0x98555fff  libGFXShared.dylib (12.0.40.6) <BD7D157F-FC13-3A67-AE0A-AF3E59110A5E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
0x98556000 - 0x985ebffb  libsystem_c.dylib (1082.20.4) <EA321BB7-709F-330B-A04E-5549E92DD036> /usr/lib/system/libsystem_c.dylib
0x985ec000 - 0x9866bff3  com.apple.framework.IOKit (2.0.2 - 1179.20.6) <52129524-EAB6-3502-9F85-320757C855CE> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x9866c000 - 0x98674ffb  libsystem_pthread.dylib (138.10.4) <4F09AB76-1AF9-31FD-9194-8C52B5CB2394> /usr/lib/system/libsystem_pthread.dylib
0x98675000 - 0x986a8fe3  libsystem_m.dylib (3105) <7A819348-2422-3458-B826-07615C63BFA4> /usr/lib/system/libsystem_m.dylib
0x986a9000 - 0x9873afff  com.apple.CoreSymbolication (3.1 - 58048.1) <CFC2192E-B634-33D0-B6A5-A2D17A3F7AEF> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
0x9873b000 - 0x98748ff7  com.apple.SpeechRecognitionCore (2.2.7 - 2.2.7) <6CE1B462-8E4E-3E25-986E-27B1C9C40AF2> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore
0x98749000 - 0x98749fff  liblaunch.dylib (756.20.4) <7A6E82A0-3540-34F9-AC0C-8A6B5B15E7F7> /usr/lib/system/liblaunch.dylib
0x9874d000 - 0x987c0fff  com.apple.datadetectorscore (7.0 - 460) <AB256878-3312-35E7-B1D7-5AC52776468C> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
0x987c1000 - 0x987c4fff  libScreenReader.dylib (425.102) <072301B1-4C49-3F51-8D6D-3C7F9E32E144> /usr/lib/libScreenReader.dylib
0x987c5000 - 0x987d2fff  com.apple.OpenDirectory (10.11 - 194) <9895BE23-6781-3FD8-9A64-4E3EB6D9388C> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
0x98807000 - 0x988baffb  com.apple.Bluetooth (4.4.3 - 4.4.3f4) <1A3F8E78-4C4E-3330-B05B-8A01657E8AF0> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
0x988bb000 - 0x98a5eff7  libGLProgrammability.dylib (12.0.40.6) <7F9042CC-FAC2-347E-AB41-782EC7822D96> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dylib
0x98a5f000 - 0x98b4aff7  unorm8_bgra.dylib (2.6.4.1) <9A035EA4-AEB2-32D5-8C6B-EE40DD1AD995> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/unorm8_bgra.dylib
0x98b57000 - 0x98b59ffb  libRadiance.dylib (1442) <7F8BFD4C-F14E-3A94-B946-28CCC62F28C3> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
0x98b5a000 - 0x98cdffff  com.apple.UIFoundation (1.0 - 436.1) <728B9CE2-A900-371D-B721-72F1D5B2566E> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation
0x98ce0000 - 0x98cfaff7  liblzma.5.dylib (10) <7DDBF3FF-5EDC-31EA-8A2C-70C6BC754953> /usr/lib/liblzma.5.dylib
0x98d89000 - 0x98d89fff  com.apple.Accelerate.vecLib (3.10 - vecLib 3.10) <F594A9DE-AE5D-317E-9CC2-1E69DB9577C6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
0x98d8a000 - 0x98dc6fff  com.apple.RemoteViewServices (2.0 - 99) <E5B204E6-A5D2-32D2-A42E-967646E46C26> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
0x98dc7000 - 0x98ddaff7  libsasl2.2.dylib (209) <234E3397-2D1D-3A62-B7E6-AF15D2A8AE14> /usr/lib/libsasl2.2.dylib
0x98ddb000 - 0x98ddbfff  libOpenScriptingUtil.dylib (169.1) <9903C678-0FBF-3703-B88E-C007305189A1> /usr/lib/libOpenScriptingUtil.dylib
0x98ddc000 - 0x98ddcfff  libmetal_timestamp.dylib (600.0.43.5) <A8D06FCA-D86C-3E97-814D-76148A520121> /System/Library/PrivateFrameworks/GPUCompiler.framework/libmetal_timestamp.dylib
0x98ddd000 - 0x98e10fff  com.apple.GSS (4.0 - 2.0) <D0045E7D-C864-3F7F-A4F4-860D6E960AB7> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
0x9912a000 - 0x9915bfff  com.apple.CoreServicesInternal (248.2 - 248.2) <E3A7E838-1949-3F4E-924E-49ADE0FE8978> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
0x9915c000 - 0x99175fff  libsystem_asl.dylib (322.30.1) <9A1C2C52-5A6F-30CC-94C4-E61410C749FF> /usr/lib/system/libsystem_asl.dylib
0x99176000 - 0x991b5fff  com.apple.NavigationServices (3.8 - 220) <DAB15CAD-AB61-31C8-A76C-B804259CB81C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.framework/Versions/A/NavigationServices
0x991b6000 - 0x991e0fff  libsystem_info.dylib (477.20.1) <E7A2C4B8-B30D-3341-9A6C-9BB4B8CE3671> /usr/lib/system/libsystem_info.dylib
0x991e1000 - 0x9953c1eb  libobjc.A.dylib (680) <51E0CF8B-55D3-3474-872D-CA60A3AA79F0> /usr/lib/libobjc.A.dylib
0x99543000 - 0x99543fff  libsystem_blocks.dylib (65) <72330235-1257-37C3-B7BD-E117C8C82B3D> /usr/lib/system/libsystem_blocks.dylib
0x99544000 - 0x9955ffff  com.apple.CFOpenDirectory (10.11 - 194) <5093B1B6-AB59-3E7A-AF1C-AC7877432272> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
0x99560000 - 0x9956cfff  com.apple.CrashReporterSupport (10.11 - 717) <4E24941F-86D7-3205-99E0-C08F6119F7AE> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport
0x99575000 - 0x995c4fff  libcurl.4.dylib (90) <B41A2C58-5FB0-39E0-ADAE-AC0F6BAB5458> /usr/lib/libcurl.4.dylib
0x995c5000 - 0x995d5fff  libGL.dylib (12.0.40.6) <A49491CF-04CF-3D5B-8094-676A5709AEEB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
0x995d6000 - 0x99b04fdf  com.apple.vImage (8.0 - 8.0) <AAF2ED70-2A85-3670-A962-8F46C23CF21F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
0x99b05000 - 0x99b05fff  libenergytrace.dylib (10) <ABE346A4-94BD-3116-9CD2-F3DE06D9799B> /usr/lib/libenergytrace.dylib
0x99b06000 - 0x99b40fff  com.apple.LDAPFramework (2.4.28 - 194.5) <BF03B7AD-C04E-3EA7-B901-39262266D16E> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
0x99b41000 - 0x99b67ffb  libPng.dylib (1442) <47B4A940-E559-34BB-A9E0-A941F3EB256E> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
0x99b68000 - 0x99b6efff  com.apple.IOAccelerator (205.1 - 205.1) <28D9411D-43AC-3B2F-838E-CB806FF6EBC8> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator
0x99b81000 - 0x99bc4fff  com.apple.Metal (55.2.8 - 55.2.8) <DAEC0A46-D4AA-3120-AA8A-550F28D3177E> /System/Library/Frameworks/Metal.framework/Versions/A/Metal
0x9a231000 - 0x9a24afff  libsystem_malloc.dylib (67) <50180446-240E-3E17-BE73-478E1E993F77> /usr/lib/system/libsystem_malloc.dylib
0x9a24b000 - 0x9a257ff7  libcsfde.dylib (517.20.1) <D60E8D4B-6FC8-3407-9DF3-60BCD99BE256> /usr/lib/libcsfde.dylib
0x9a258000 - 0x9a281ffb  com.apple.shortcut (2.16 - 93) <0FB42F91-E9EC-344C-90F1-1A4AAF5B7C7C> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
0x9a282000 - 0x9a28cffb  com.apple.audio.SoundManager (4.2 - 4.2) <B76F02CE-70D4-3977-B622-9860B8ACD405> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/Versions/A/CarbonSound
0x9a28d000 - 0x9a295fff  com.apple.NetFS (6.0 - 4.0) <AB5AD631-08F6-3B3E-B1CB-71987FD7C3A0> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
0x9a296000 - 0x9a2a1ff7  libGPUSupport.dylib (12.0.40.6) <B76A8B94-2989-37AE-9D61-68F24030BF93> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/libGPUSupport.dylib
0x9a57e000 - 0x9a66dff7  libcrypto.0.9.8.dylib (59) <1C9DEE80-A9B9-3444-B1D8-7E0B65530959> /usr/lib/libcrypto.0.9.8.dylib
0x9a66e000 - 0x9a9f1ffb  com.apple.Foundation (6.9 - 1256.1) <93AD05D6-7C15-34B0-BE67-E842928C5F13> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
0x9a9f2000 - 0x9a9f5fff  libextension.dylib (78) <1950066F-2584-3599-A8B1-0E1AF35BEE8A> /usr/lib/libextension.dylib
0x9a9f6000 - 0x9aa4cfff  libcups.2.dylib (435) <882D214C-1FBE-3A0E-B52E-15A6AE363CC2> /usr/lib/libcups.2.dylib
0x9aa4d000 - 0x9aaa3ff7  libc++.1.dylib (120.1) <59501F15-E2C0-30D2-9B8C-7E784D47900E> /usr/lib/libc++.1.dylib
0x9aaa4000 - 0x9aed6ffb  com.apple.vision.FaceCore (3.3.1 - 3.3.1) <DC2FC448-0D7D-3F23-9E73-D61814737F5D> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
0x9aed7000 - 0x9aeebff7  com.apple.CoreBluetooth (1.0 - 1) <759CCDC0-525B-3CA8-9150-C220850ECD67> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
0x9aeec000 - 0x9af04ff7  libSparseBLAS.dylib (1159) <3ABF944C-4483-349C-A3C6-36B4CE2549E2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib
0x9af05000 - 0x9af1aff3  libCGInterfaces.dylib (317.9) <781659B7-7013-3956-9E44-A6F60410391F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/Libraries/libCGInterfaces.dylib
0x9af1b000 - 0x9af41ffb  com.apple.MultitouchSupport.framework (304.10 - 304.10) <3147E02B-0BB3-349F-95C1-516071E94E00> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
0x9af42000 - 0x9af42fff  com.apple.Carbon (154 - 157) <B301CCD8-EF6D-3902-9CAF-57FC455BEF4C> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
0x9af43000 - 0x9b05cff3  com.apple.desktopservices (1.10 - 1.10) <EC1149D5-A7C3-3717-B637-526C777A240F> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
0x9b05d000 - 0x9b060ffb  libutil.dylib (43) <761D677E-9A8E-3385-BCFD-F2CB28A6A9B6> /usr/lib/libutil.dylib
0x9b095000 - 0x9b10bff3  com.apple.securityfoundation (6.0 - 55126) <73A72782-AE1A-3A4E-9EEA-1E7A4167DB9D> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
0x9b10c000 - 0x9b115fff  libsystem_networkextension.dylib (385.20.6) <071D9EC4-1FC3-3BAD-831F-9D22558DA4D2> /usr/lib/system/libsystem_networkextension.dylib
0x9b24d000 - 0x9b253fff  com.apple.ImageCapture (9.0 - 9.0) <8CD24455-7D06-3CA8-87D9-DC7CC15476FD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
0x9b254000 - 0x9b259ffb  libcompiler_rt.dylib (62) <75AD8B02-CE8B-3EFE-9377-6758315E310E> /usr/lib/system/libcompiler_rt.dylib
0x9b288000 - 0x9b289fff  liblangid.dylib (122) <3432A383-168D-3522-8B32-BEABE733FC8F> /usr/lib/liblangid.dylib
0x9b337000 - 0x9b33ffff  com.apple.frameworks.CoreDaemon (1.3 - 1.3) <E39B7001-A8FF-3B76-AAE5-7A0383E5409E> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
0x9b5bf000 - 0x9b5c3ffb  com.apple.IOSurface (108.0.1 - 108.0.1) <77922C52-6101-3458-83A6-32F25CCD6850> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
0x9b5c4000 - 0x9b5e3fff  com.apple.GenerationalStorage (2.0 - 239) <BD8AED3F-4365-303A-AF75-A8B180E02622> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage
0x9b694000 - 0x9b6b7ffb  com.apple.framework.Apple80211 (11.0 - 1110.33) <2687651B-0E7E-3182-95C5-9C2C7B7AEF29> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
0x9b6b8000 - 0x9b946ffb  com.apple.CFNetwork (760.2.6 - 760.2.6) <A1E60525-30D7-3B97-B3D3-026BE25AC9D4> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
0x9bd03000 - 0x9bd03fff  com.apple.CoreServices (728.6 - 728.6) <5EF202D8-6D60-3AD7-BA67-DF4B99C11E1C> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
0x9bd05000 - 0x9bd07fff  libquarantine.dylib (80) <08B15DF7-0D9F-3FA2-A5E3-E2E9CB935040> /usr/lib/system/libquarantine.dylib
0x9bd08000 - 0x9bf41ff7  libFosl_dynamic.dylib (16.24) <E7FBD847-0A7B-3931-8AFC-D95552DACFA0> /usr/lib/libFosl_dynamic.dylib
0x9bf4e000 - 0x9bf53fff  com.apple.TCC (1.0 - 1) <CF01314F-B31E-38B8-9777-8545EC622E25> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
0x9bf54000 - 0x9bfa9ff7  com.apple.htmlrendering (77 - 1.1.4) <E0FD424A-B136-35CE-B1D7-233528DAFB89> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering.framework/Versions/A/HTMLRendering
0x9bfaa000 - 0x9c0cfff3  com.apple.CoreText (352.0 - 494.10) <525E0248-7BE3-3808-B939-FC808F01EAAA> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
0x9c0d0000 - 0x9c0feff7  GLRendererFloat (12.0.40.6) <94FB6A89-F7BB-38E9-BA97-30EB1D86509C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloat.bundle/GLRendererFloat
0x9c0ff000 - 0x9c105fff  libunwind.dylib (35.3) <537C3628-4E11-3CD9-A7AA-47837549810D> /usr/lib/system/libunwind.dylib
0x9c106000 - 0x9c107fff  libDiagnosticMessagesClient.dylib (100) <5F2F9A2C-1A83-3D4E-8F69-1D4FD0515794> /usr/lib/libDiagnosticMessagesClient.dylib
0x9c120000 - 0x9c41bfff  com.apple.CoreServices.CarbonCore (1136 - 1136) <4D69BC4E-633D-3DAC-9343-13DE1BAA690E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
0x9c71d000 - 0x9c771fff  com.apple.Symbolication (1.4 - 58044) <475BACB7-A14F-354D-A120-5EE0CB311638> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
0x9c772000 - 0x9c775fff  libCoreVMClient.dylib (119.5) <E5F215EC-B134-35AE-8125-06C06B45B60E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
0x9c776000 - 0x9c8c7fef  com.apple.coreui (2.1 - 365.2) <96BA8716-229F-31CC-964A-F354CDE916CF> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
0x9c8c8000 - 0x9ca41ff7  com.apple.audio.toolbox.AudioToolbox (1.13 - 1.13) <3E9EA8BD-7870-3763-BB76-1E8AF3580A25> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
0x9ca42000 - 0x9cad6ff3  com.apple.PerformanceAnalysis (1.0 - 1) <F2C1955F-806B-34FC-8E62-A9E7721D10C2> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
0x9cad7000 - 0x9cb82ff7  com.apple.LanguageModeling (1.0 - 1) <6A036543-8104-30EF-A010-A8554C0B9444> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling
0x9cb83000 - 0x9cbabfff  com.apple.IconServices (68.1 - 68.1) <523DB63C-9782-3E4F-ADDA-FF3C979CD6F0> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
0x9d258000 - 0x9d313fff  com.apple.backup.framework (1.7.2 - 1.7.2) <7FF1CC4B-4E9E-3D4C-BDA7-150179C5D7DC> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
0x9d348000 - 0x9d34bfff  libCoreFSCache.dylib (119.5) <CD0F7805-B9D4-35C0-A3D6-DE77F5FAE59A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib
0x9d34c000 - 0x9d363ff7  libmarisa.dylib (4) <B64E6872-A3B1-3C96-9372-04F39BE2C2A8> /usr/lib/libmarisa.dylib
0x9d474000 - 0x9d83bff3  com.apple.HIToolbox (2.1.1 - 807.2) <E3AECED9-D8F6-37DE-B2C4-167293AB1133> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
0x9d83c000 - 0x9d847fff  com.apple.NetAuth (6.0 - 6.0) <60FBAA93-54F4-36A5-8508-CA80DD5D2823> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
0x9eb62000 - 0x9eb6bfff  com.apple.DiskArbitration (2.7 - 2.7) <06DB50A4-9B8E-3D80-B04D-C39456C0ED75> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
0x9eb6c000 - 0x9eb77ff3  libcommonCrypto.dylib (60075.20.1) <A091617F-7831-3F06-B7B8-5BEE7D0EB60B> /usr/lib/system/libcommonCrypto.dylib
0x9eb78000 - 0x9eb94ff7  com.apple.openscripting (1.7.1 - 169.1) <4DBBE25B-D13B-3397-97C5-FD4D9754DEDE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
0x9eb95000 - 0x9ed68ff7  com.apple.ImageIO.framework (3.3.0 - 1442) <27DC590F-48F8-3726-8AEE-F070EA693677> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO

External Modification Summary:
  Calls made by other processes targeting this process:
    task_for_pid: 5
    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: 22827
    thread_create: 0
    thread_set_state: 0

VM Region Summary:
ReadOnly portion of Libraries: Total=214.2M resident=0K(0%) swapped_out_or_unallocated=214.2M(100%)
Writable regions: Total=2.1G written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=2.1G(100%)
                                VIRTUAL   REGION
REGION TYPE                        SIZE    COUNT (non-coalesced)
===========                     =======  =======
Accelerate.framework               256K        3
Activity Tracing                  2048K        2
CG backing stores                 6888K        5
CG image                            48K       11
CG shared images                   400K       12
CoreAnimation                      120K       20
CoreUI image data                  840K       11
CoreUI image file                  192K        4
Foundation                           4K        2
IOKit                             7940K        2
Image IO                             4K        2
Kernel Alloc Once                    4K        2
MALLOC                           955.2M      179
MALLOC guard page                   48K       10
Memory Tag 242                      12K        2
Memory Tag 249                     156K        2
OpenCL                               8K        2
OpenGL GLSL                        128K        3
Process Corpse Info               2048K        2
Stack                             21.2M       46
Stack Guard                       56.7M       46
VM_ALLOCATE                        1.1G      337
VM_ALLOCATE (reserved)             616K       10         reserved VM address space (unallocated)
__DATA                            9624K      244
__GLSLBUILTINS                    2588K        2
__IMAGE                            528K        2
__LINKEDIT                        65.7M       27
__OBJC                            2496K       67
__TEXT                           148.5M      241
__UNICODE                          552K        2
mapped file                      202.6M      157
shared memory                     34.1M       14
===========                     =======  =======
TOTAL                              2.6G     1439
TOTAL, minus reserved VM space     2.6G     1439

Model: MacBookAir4,2, BootROM MBA41.0077.B14, 2 processors, Intel Core i5, 1.7 GHz, 4 GB, SMC 1.73f66
Graphics: Intel HD Graphics 3000, Intel HD Graphics 3000, Built-In
Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1333 MHz, 0x80AD, 0x484D54333235533642465238432D48392020
Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1333 MHz, 0x80AD, 0x484D54333235533642465238432D48392020
AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xE9), Broadcom BCM43xx 1.0 (5.106.98.100.24)
Bluetooth: Version 4.4.3f4 16616, 3 services, 27 devices, 1 incoming serial ports
Network Service: Wi-Fi, AirPort, en0
Serial ATA Device: APPLE SSD TS128C, 121.33 GB
USB Device: USB 2.0 Bus
USB Device: FaceTime Camera (Built-in)
USB Device: Hub
USB Device: G300s Optical Gaming Mouse
USB Device: Apple Internal Keyboard / Trackpad
USB Device: BRCM20702 Hub
USB Device: Bluetooth USB Host Controller
USB Device: USB 2.0 Bus
USB Device: Hub
USB Device: Card Reader
Thunderbolt Bus: MacBook Air, Apple Inc., 8.1
 
Something strange with tModLoader... I uploaded MoreAccesories+ v1.4 sucessfully. But when I press Manage Published and get into My Published Mod - it is nothing there.
Any advices?
empty.png
 
hey, i wanted to try and learn a little about modding so i followed turtorial in these two videos:
https://www.youtube.com/watch?annot...&feature=iv&src_vid=cKylgxxRS3Y&v=IyryXY-caZ4
however in visual studio i do not get to choose terraria regarded code after putting first letter, also i get some sort of errors where there are written lines like using terraria, and then on each line with item.something. Do i need something else not shown on these wideos to make it work?
 
Can someone help me? I made a bow and an arrow but when i shoot it all i can see is dust projectiles and no arrow. Also arrow travels in a straight line like a bullet.
using Microsoft.Xna.Framework;
using Terraria;
using Terraria.ID;
using Terraria.ModLoader;

namespace KRTP.Items.Meteor
{
//ported from my tAPI mod because I'm lazy
public class MeteorBow : ModItem
{
public override void SetDefaults()
{
item.name = "Meteor Bow";
item.damage = 21;
item.ranged = true;
item.width = 42;
item.height = 30;
item.toolTip = "";
item.useTime = 35;
item.useAnimation = 35;
item.useStyle = 5;
item.noMelee = true;
item.knockBack = 4f;
item.value = Item.sellPrice(0, 01, 0, 0);
item.shoot = mod.ProjectileType("MeteorArrow");
item.rare = 8;
item.useSound = 5;
item.autoReuse = false;
item.shootSpeed = 6f;
}

public override void AddRecipes()
{
ModRecipe recipe = new ModRecipe(mod);
recipe.AddIngredient(null, "TestItem", 1);
recipe.AddTile(TileID.WorkBenches);
recipe.SetResult(this);
recipe.AddRecipe();
}

public override void GetWeaponDamage(Player player, ref int damage)
{
damage = (int)(damage * player.arrowDamage + 5E-06);
}

public override Vector2? HoldoutOffset()
{
return Vector2.Zero;
}
}
}
using System;
using Microsoft.Xna.Framework;
using Terraria;
using Terraria.ID;
using Terraria.ModLoader;

namespace KRTP.Projectiles
{
//ported from my tAPI mod because I'm lazy
public class MeteorArrow : ModProjectile
{
public override void SetDefaults()
{
projectile.name = "Meteor Arrow";
projectile.width = 14;
projectile.height = 32;
projectile.alpha = 255;
projectile.friendly = true;
projectile.tileCollide = true;
projectile.penetrate = 2;
projectile.light = 0.3f;
projectile.ignoreWater = true;
projectile.ranged = true;
ProjectileID.Sets.Homing[projectile.type] = false;
aiType = ProjectileID.WoodenArrowFriendly;
}
public override void AI()
{
projectile.velocity.Y += projectile.ai[0];
if (Main.rand.Next(3) == 0)
{
Dust.NewDust(projectile.position + projectile.velocity, projectile.width, projectile.height, mod.DustType("Fire"), projectile.velocity.X * 0.0f, projectile.velocity.Y * 0.0f);
}
}
public override void OnHitNPC(NPC target, int damage, float knockback, bool crit)
{
if (Main.rand.Next(2) == 0)
{
target.AddBuff(BuffID.OnFire, 300);
}
}
}
}
Is the bow vanilla or from a mod?
 
Can someone help me please, when i first installed 0.9.0.1 it said an error when i tried loading it from the download so someone told me to load it from the steam library, so i did but it loaded up vanilla, so i tried loading from the download again and that opened vanilla as well. How can i get tmod to work???
 
It's actually very similar to how it was. 'string deathText' was replaced with 'Terraria.DataStructures.PlayerDeathReason.ByPlayer' and moved to the start of player.Hurt(). You can replace .ByPlayer with several other things including .ByCustomReason(string) which lets you type in your own reason.

You can also use player.HurtOld() to do it the old way. The following are essentally the same.
Code:
player.Hurt(Terraria.DataStructures.PlayerDeathReason.ByCustomReason("Stupidity"), 1234, 0, false, true, false, -1);
player.HurtOld(1234, 0, false, true, "Stupidity", false, -1);
Thank You Solo-Ion. Now it is clear.
 
Back
Top Bottom