[DiscordArchive] oh, uhhhhh is there like a player per level db table?
[DiscordArchive] oh, uhhhhh is there like a player per level db table?
Archived author: Fiur • Posted: 2022-11-28T10:25:13.468000+00:00
Original source
Parry chance is also based on defense skill
Archived author: Fiur • Posted: 2022-11-28T10:25:41.662000+00:00
Original source
So if you level up it will become reduced until you max out defense again
Archived author: robinsch • Posted: 2022-11-28T13:46:56.463000+00:00
Original source
No, weather / rain / snow are particle effects that are drawn on the screen.
Archived author: robinsch • Posted: 2022-11-28T13:48:14.416000+00:00
Original source
```cpp
struct MapWeather
{
float Grade_Goal; // 0x0
float Grade_Prev; // 0x4
float Grade_Curr; // 0x8
float Glow_Goal; // 0xc
float Glow_Prev; // 0x10
float Glow_Curr; // 0x14
uint32_t Changing_StartTime; // 0x18
uint32_t Weather_StartTime; // 0x1c
int Changing_WeatherType; // 0x20
char _;
char FromServer; // 0x25
char __[3];
float Default_Goal; // 0x28
float Default_Prev; // 0x2c
float Default_Curr; // 0x30
RBGA Color; // 0x34
char Texture[240]; // 0x38
char ___[20];
uint32_t* Rain;
uint32_t* Snow;
uint32_t* Storm;
};
```
Archived author: robinsch • Posted: 2022-11-28T13:49:15.473000+00:00
Original source
Not sure what Rain / Snow / Storm struct is
Archived author: stoneharry • Posted: 2022-11-28T13:56:19.963000+00:00
Original source
The weather data does effect the light data, I used to hack my zones darker by applying heavy rain at the highest intensity and keep resending the packet periodically so it stayed dark without actually raining... Now I just properly set light data
Archived author: <o> • Posted: 2022-11-28T13:58:32.235000+00:00
Original source
try following the parry calculations in your core, if there is dbc data your core should point you in that direction. 3.3.5 has a lot of tables hardcoded in the server, so it might be something like that as well
Archived author: stoneharry • Posted: 2022-11-28T14:15:59.083000+00:00
Original source
Pretty much this, search an existing class in the emulator to see all the hardcoded data. Also in 3.3.5 at least tons of data is hardcoded based on the class masks and family flags
Archived author: Crow • Posted: 2022-11-28T14:16:59.648000+00:00
Original source
ill do you one better, everything in the city has the same sound data now and houses still make it go silent and the hold still has a creepy noise
Archived author: stoneharry • Posted: 2022-11-28T14:20:54.990000+00:00
Original source
See my message, I think you corrupted the DBC by using an incorrect order