Sometimes I like looking through the files and read them. I found these + more but these ones mainly (In the StrRes.ini)
Also in the file are these sorts of lines "100133=Look! %d %d %d, %d! Big!"
Thats obviosly from gambling but the variables '%d' are all the same, I dont get it. In a batch file thats how variables are displayed but there all the same letter, so say if runs a random process to detemain what dice face is rolled eg:
Anyways, you should get what im trying to say, Do you think its posible to use the StrRes.ini variables in another application. Eg Health check rather then defeating DMA just read off the %d variable.
Anyways, Just an Idea
I guess the relieve damage is the turtle gem or whatever its calledQuote:
10447=Maximum items in the oven!
10448=It has been put into the oven!
10449=The item can't be crafted!
10457=Relieve 2% damage
10458=Relieve 4% damage
10459=Relieve 6% damage
Also in the file are these sorts of lines "100133=Look! %d %d %d, %d! Big!"
Thats obviosly from gambling but the variables '%d' are all the same, I dont get it. In a batch file thats how variables are displayed but there all the same letter, so say if runs a random process to detemain what dice face is rolled eg:
Code:
Dim I As Integer Dim Dice As Integer For I = 1 to 3 'Runs 3 times for all the %d variables, not including the one after the "," Randomize Dice = Int(Rnd *6) +1 'Calls the information from the text file, stores it to a temp string variable 'Replaces %d with dice Dice = " " 'Clears Dice variable next 'Back to start of loop unless its finished
Anyways, Just an Idea