Help pls

Pages: 12
closed account (48T7M4Gy)
Mais vous devriez maintenant avoir une très bonne idée sur la façon de relever ces défis. Bonne chance. XDD
Mais il faut un .dll je sais déjà pas coder du java, c# ni rien, alors .dll pouet.....

De plus, le script crée des sauvegardes à l'infini: http://prntscr.com/bj52ti
closed account (37oyvCM9)
i used this for my small app but you would have to adapt it....go check out ifstream on this site
1
2
3
4
5
6
7
8
9
10
11
12
13

#include <fstream>
              

 // save details to file
std::ofstream userDetails;
userDetails.open("fileName.txt");
userDetails << tempFName << std::endl;
userDetails << tempLName << std::endl;
userDetails << tempUserName << std::endl;
userDetails << tempPassword << std::endl;
userDetails << tempMainChipStack << std::endl;
userDetails.close();


Others will have a go about error checking but you can look that up at the same time...just pointing you in the right direction...Cheers Paul

Last edited on
I already have a script BUT i'm getting errors with it: http://www.tallior.com/auto-save-in-unity/

(See my past messages for the error)
Topic archived. No new replies allowed.
Pages: 12