[DiscordArchive] does it work?
[DiscordArchive] does it work?
Archived author: -- • Posted: 2020-01-19T19:18:26.525000+00:00
Original source
does it work?
Archived author: -- • Posted: 2020-01-19T19:18:34.361000+00:00
Original source
when you assign the script in the db obvsly
Archived author: Auhgarn • Posted: 2020-01-19T19:18:39.366000+00:00
Original source
```ScriptName``` field in table ```gameobject``` has value ```atal_dazar_entrance``` for dungeon portal entrance entry
Archived author: Auhgarn • Posted: 2020-01-19T19:18:41.031000+00:00
Original source
no
Archived author: -- • Posted: 2020-01-19T19:18:52.299000+00:00
Original source
did you implement the scriptloaders correctly?
Archived author: Auhgarn • Posted: 2020-01-19T19:19:18.672000+00:00
Original source
I believe so
Archived author: Auhgarn • Posted: 2020-01-19T19:19:26.978000+00:00
Original source
```cpp
// This is where scripts' loading functions should be declared:
void AddSC_atal_dazar();
void AddSC_instance_atal_dazar();
void AddSC_zuldazar();
// The name of this function should match:
// void Add${NameOfDirectory}Scripts()
void AddZandalarScripts()
{
AddSC_atal_dazar();
AddSC_instance_atal_dazar();
AddSC_zuldazar();
}
```
Archived author: -- • Posted: 2020-01-19T19:19:32.946000+00:00
Original source
Check if OnUpdate is called
Archived author: Auhgarn • Posted: 2020-01-19T19:20:53.668000+00:00
Original source
I'm not sure where to check that