# Cannot get event with Studio API (FMOD ERROR (74))

**URL:** https://qa.fmod.com/t/cannot-get-event-with-studio-api-fmod-error-74/17697
**Category:** FMOD Engine
**Tags:** cpp
**Created:** [September 21, 2021, 6:51pm UTC](https://qa.fmod.com/t/cannot-get-event-with-studio-api-fmod-error-74/17697 "2021-09-21T18:51:22Z")
**Posts on this page:** 6
**Page:** 1

<div class="post-metadata">

### Author: ![makkenr95](https://avatars.discourse-cdn.com/v4/letter/m/ee7513/32.png) [@makkenr95](https://qa.fmod.com/u/makkenr95)
#### Post date: [September 21, 2021, 6:51pm UTC](https://qa.fmod.com/t/cannot-get-event-with-studio-api-fmod-error-74/17697/1 "2021-09-21T18:51:22Z")

</div>

Code:

 ![Screenshot 2021-09-21 204710](https://canada1.discourse-cdn.com/flex036/uploads/fmod/original/2X/b/b0a3a4f0147feae33c7a6421b10b46628a0254b7.png)

I dont know why but when i try to get the event by GUID or event id i get error 74. The documentation said something about the strings bank had to be loaded as well as the bank but i do not find any way to load the strings bank with the bank. I dont even know if that is the problem. Any idea what might be wrong?

---

<div class="post-metadata">

### Author: ![richard\_simms](https://yyz2.discourse-cdn.com/flex036/user_avatar/qa.fmod.com/richard_simms/32/261_2.png) [@richard\_simms](https://qa.fmod.com/u/richard_simms)
#### Post date: [September 22, 2021, 2:45pm UTC](https://qa.fmod.com/t/cannot-get-event-with-studio-api-fmod-error-74/17697/2 "2021-09-22T14:45:16Z")

</div>

It’s hard to tell without the context of the rest of the script, but error 74 means it cannot find and event, bus, or parameter. The `master.strings.bank` is only needed if you are loading events using their paths, you won’t need to load it if you are using GUIDs.

I would suggest double checking the event path/GUID you are using and ensuring it matches the string you are passing into your function and that all events are assigned to the banks being loaded.

---

<div class="post-metadata">

### Author: ![makkenr95](https://avatars.discourse-cdn.com/v4/letter/m/ee7513/32.png) [@makkenr95](https://qa.fmod.com/u/makkenr95)
#### Post date: [September 22, 2021, 4:05pm UTC](https://qa.fmod.com/t/cannot-get-event-with-studio-api-fmod-error-74/17697/3 "2021-09-22T16:05:55Z")

</div>

![image](https://canada1.discourse-cdn.com/flex036/uploads/fmod/original/2X/3/367c9a71e985ae7f92afb06b25f2d483ad3afaa7.png)

So im now loading the strings instead but i still get the same problem. Here is the project and i just rebuildt the bank. Cant upload more than one image at a time so im adding some below.

---

<div class="post-metadata">

### Author: ![makkenr95](https://avatars.discourse-cdn.com/v4/letter/m/ee7513/32.png) [@makkenr95](https://qa.fmod.com/u/makkenr95)
#### Post date: [September 22, 2021, 4:07pm UTC](https://qa.fmod.com/t/cannot-get-event-with-studio-api-fmod-error-74/17697/4 "2021-09-22T16:07:31Z")

</div>

![image](https://canada1.discourse-cdn.com/flex036/uploads/fmod/original/2X/9/9afdc32b4ff3f39e8d5c00caf4f239b737af5a6b.png)

Here is the rest of the code. Just trying to play sound from an event to try it out

---

<div class="post-metadata">

### Author: ![richard\_simms](https://yyz2.discourse-cdn.com/flex036/user_avatar/qa.fmod.com/richard_simms/32/261_2.png) [@richard\_simms](https://qa.fmod.com/u/richard_simms)
#### Post date: [September 23, 2021, 12:40am UTC](https://qa.fmod.com/t/cannot-get-event-with-studio-api-fmod-error-74/17697/5 "2021-09-23T00:40:52Z")

</div>

Yes, so you’re trying to load the event by its path (`event://Test`) so you will need to load _both_ the `Master.bank` and the `Master.strings.bank` before trying to load this event.

The `Master.bank` contains all the metadata for the mixer, as well as any metadata (and assets by default) for events assigned to it.

The `Master.strings.bank` only has the information linking the paths of events/buses/parameters/etc to their GUIDs, allowing you to get these objects via their paths.

---

<div class="post-metadata">

### Author: ![makkenr95](https://avatars.discourse-cdn.com/v4/letter/m/ee7513/32.png) [@makkenr95](https://qa.fmod.com/u/makkenr95)
#### Post date: [September 23, 2021, 2:02pm UTC](https://qa.fmod.com/t/cannot-get-event-with-studio-api-fmod-error-74/17697/6 "2021-09-23T14:02:54Z")

</div>

Yes thank you! I had to load the bank and the strings bank the same way inside the loader:

 ![asdfasdfasdasd](https://canada1.discourse-cdn.com/flex036/uploads/fmod/original/2X/2/2f7ab6a51cabdddbbb9661983612fe47f1e9c43b.png)
