You are viewing our Forum Archives. To view or take place in current topics click here.

Which theme?

Original (Flat ui)
35.00% (14 votes)
New (Industrial)
65.00% (26 votes)

Total Votes: 40

#51. Posted:
SprinxzDvar
  • Resident Elite
Status: Offline
Joined: May 23, 201212Year Member
Posts: 224
Reputation Power: 8
Status: Offline
Joined: May 23, 201212Year Member
Posts: 224
Reputation Power: 8
Looks great bro, cant wait!!
#52. Posted:
Ethics
  • Christmas!
Status: Offline
Joined: May 06, 201311Year Member
Posts: 3,754
Reputation Power: 154
Status: Offline
Joined: May 06, 201311Year Member
Posts: 3,754
Reputation Power: 154
Now it is updated it looks absolutely perfect. It does look like a premium tool and will defiantly give net a run for its money.
#53. Posted:
vSmithy
  • TTG Natural
Status: Offline
Joined: Jan 30, 201014Year Member
Posts: 935
Reputation Power: 45
Status: Offline
Joined: Jan 30, 201014Year Member
Posts: 935
Reputation Power: 45
Just a suggestion for saving the selected colour - when you click a button to select the colour, along with changing the colour scheme, have it so that it will create a settings file and write the colour chosen to it as a string. Then, on application startup have the program read the string from the textfile and apply the corresponding colour scheme.

Eg -

*Press 'Green'
*Write green to textfile, overwriting previous contents -


string filepath = "@Enterfilepath";

using(var writer = new StreamWriter(filepath, false) // Set to false to overwrite previous contents
{
    writer.Write("colour");
}



*Close program
*On application startup, program reads string in text file - green - and then branches to the code to set it to the correct colour.

string filepath = "@Enterfilepath";

if(Directory.Exists(filepath)
{

 using(StreamReader read = File.OpenText(filepath))
 {

    string colour = read.ReadToEnd(); //Reads contents of settings file

    if(colour.Equals("green")
    {
       //Change colour scheme
    }

 }

}


Easy fix, may not be the best option but at least it works.

EDIT: This can also be used for other settings by separating each setting string by line like so -


green
premium
example
example1


Just remember to set the append value to true when writing (ie using(var writer = new StreamWriter(filepath, true)) and go to a new line after every string by using '\n'.

Then read from specific line by using

string setting = File.ReadLines(filepath).Skip(3).Take(1).First();


In this case, it will read the 4th line.

To change the value of a specific line:


var lines = File.ReadLines(filepath);
lines[3] = " new value "; //remember that [0] is included in an array so this will read the 4th line
File.WriteAllLines(filepath, lines);
#54. Posted:
Bashful
  • TTG Senior
Status: Offline
Joined: Aug 02, 201212Year Member
Posts: 1,915
Reputation Power: 77
Status: Offline
Joined: Aug 02, 201212Year Member
Posts: 1,915
Reputation Power: 77
Looks better then it did when I first helped you.if you have any questions again pm me. I can give you my Skype or something for when I'm at work.
#55. Posted:
ZZ9_x_iHaXoRZz
  • Fairy Master
Status: Offline
Joined: Mar 11, 201113Year Member
Posts: 4,436
Reputation Power: 8964
Status: Offline
Joined: Mar 11, 201113Year Member
Posts: 4,436
Reputation Power: 8964
For bo1 and Mw3 you missed unlock all and god mode classes, also don't take this the wrong way the tools does look nice but has same stuff than other tools I have seen, if I was you I would do some research and look into adding new options people has not seen for a while/before such has like what I did with ghosts and brought back all client stats.
#56. Posted:
explicitneeds
  • Powerhouse
Status: Offline
Joined: Jan 14, 201410Year Member
Posts: 458
Reputation Power: 19
Status: Offline
Joined: Jan 14, 201410Year Member
Posts: 458
Reputation Power: 19
is there gunna be fun mods for any games?hopefully ghosts its fun to mod extinction
#57. Posted:
ProJimmyRustler
  • V5 Launch
Status: Offline
Joined: Jul 14, 201410Year Member
Posts: 1,720
Reputation Power: 71
Status: Offline
Joined: Jul 14, 201410Year Member
Posts: 1,720
Reputation Power: 71
ZZ9_x_iHaXoRZz wrote For bo1 and Mw3 you missed unlock all and god mode classes, also don't take this the wrong way the tools does look nice but has same stuff than other tools I have seen, if I was you I would do some research and look into adding new options people has not seen for a while/before such has like what I did with ghosts and brought back all client stats.

I didn't miss them, I just haven't add the option yet.
explicitneeds wrote is there gunna be fun mods for any games?hopefully ghosts its fun to mod extinction
Yes there is, I haven't add them yet.
#58. Posted:
Incitable
  • Prospect
Status: Offline
Joined: Nov 19, 201311Year Member
Posts: 600
Reputation Power: 25
Status: Offline
Joined: Nov 19, 201311Year Member
Posts: 600
Reputation Power: 25
Amazing program. Thanks for giving back.
#59. Posted:
Zehtrix
  • Rising Star
Status: Offline
Joined: Dec 13, 201212Year Member
Posts: 700
Reputation Power: 28
Status: Offline
Joined: Dec 13, 201212Year Member
Posts: 700
Reputation Power: 28
Its a shame I bought appNET, this looks alot better lol.
#60. Posted:
explicitneeds
  • Powerhouse
Status: Offline
Joined: Jan 14, 201410Year Member
Posts: 458
Reputation Power: 19
Status: Offline
Joined: Jan 14, 201410Year Member
Posts: 458
Reputation Power: 19
im actually so excited to get my paypal fixed and buy this when its released
Jump to:
You are viewing our Forum Archives. To view or take place in current topics click here.