sannotsuki wrote: ↑Sat Mar 02, 2024 10:25 pm
find the _Enemy_DropLoot under /sog/game1/
edit with C#
Code: Select all
int num40 = iCardDropChance * 100000;
int num41 = iCardDropChance / 2;
double num42 = 1.0;
then compile this and save the exe file
Ok, I got until that part, but int's have changed position on the and are now close to 450. But after I tried to change it, the game says that was not made to my windows version. Any suggestions?
hey,i think i have found the way to change the dropchance of v1.0.
firstly, still find 'the _Enemy_DropLoot' under '/sog/game1/', after that, you need to find code below:
Code: Select all
int iCardDrop = xEnemy.xEnemyDescription.iCardDropChance;
add a line of code on its next line'double dCardChance = 1.0;', don't miss ' ; '
secondly, find the following code:
Code: Select all
dCardChance = 1.0 / (double)iCardDrop + dAddedChance;
change it to 'dCardChance = 1.0;'. then, in the if statement on the next line, set 'dCardChance=0.7;' Change to 'dCardChance=1.0;'
finally, you can enjoy the fun of the game!