-
Posts
2 -
Joined
-
Last visited
Content Type
Profiles
Forums
Servers
Downloads
Gallery
Everything posted by dashker
-
i don't work too it tel''s me that the file it can't be opened
-
Another thing, the file is corrupt...
-
thanks, :3
-
ah okay hahahah sorry
-
i am understanding it, but never used this things, and minus in class, so i need help to learn, i think it's normal...
-
How i can store it into an array, i need to do an array or a matrix, and how i get the length of a line?
-
Here you have the code, in theory am making it by a good way but... is failing ReadChrRaces.cs
-
try { string ReadedLine = sr.ReadLine(); int resultingname = int.Parse(ReadedLine.Split(',')[0]); if (race == resultingname) { Found = true; for (int i = 0; i < 69; i++) { strvector[i] = ReadedLine.Split(',')[i]; } } } catch (System.FormatException) { MessageBox.Show("Fuck You!"); } When I do this i am having continuosly System.FormatError and i don't know Why Thansk for the help
-
you will have to know how to do it with the template and you programing skills hahhahah i have a lot of troubles making my things but here we are for learn how to code and do things
-
you can put the same name 3 times and the times like you want, but you will have to change his ID Number, and then re-attatch it in noggit, for the base terrain if you do a 010 script i think you can eliminate the objects, just deleting the strings
-
-
Version 0.1.3
261 downloads
So here you have a CSV and SQL. SQL part is not done, first i want to add all the functionalities to edit a lot of dbc. There are many things that i am implementing right now, so i need time i apreciate your comprehension Done CharBaseInfo CreatureDisplayInfo CreatureDisplayInfoExtra ToDo ChrRaces ChrClasses CharStartOutfit Item ItemDisplayInfo ItemSet How to use it: Please, put it in a folder and create inside the folder another folder called "DBC" and put there all the csv files with the format: "DBCFile.dbc.csv" I plan to do more DBC but i need time, then i will do a MyQL Connector and do a Races Modifier and a Class modifier. -
[C#] How do i convert from a string to double? [Resolved]
dashker replied to dashker's topic in Miscellaneous
thanks i have the idea -
[C#] How do i convert from a string to double? [Resolved]
dashker replied to dashker's topic in Miscellaneous
Anyone Help me please? Thanks for answers -
i will do it, so if you wait i will do it for you, and ofc my work it will be OpenSource
-
It's DBC related, if you give me time i can do it My new tool try to handle a lot of DBC, so, give me time For now i have to learn how to handle every kind of var and translate it to a string to write his file
-
[C#] How do i convert from a string to double? [Resolved]
dashker replied to dashker's topic in Miscellaneous
int[] number = new int[15]; number[0] = int.Parse(EntryBox.Text); number[1] = int.Parse(ModelBox.Text); number[2] = int.Parse(SoundBox.Text); number[3] = int.Parse(DisplayInfoExtraBox.Text); double scale = double.Parse(ScaleBox.Text, System.Globalization.NumberStyles.AllowDecimalPoint, System.Globalization.NumberFormatInfo.InvariantInfo); string result = number[0] + "," + number[1]+ "," + number[2] + "," + number[3] + "," + scale; ShitBox.Text = result; So i don't know how to handle the double so my head is exploding -
[C#] How do i convert from a string to double? [Resolved]
dashker replied to dashker's topic in Miscellaneous
Tes i have it hahaha but when i put it in a text box for example the "2.0" is 2 so i don't know if i have to add it into the string or another thing -
-
[C#] How do i convert from a string to double? [Resolved]
dashker replied to dashker's topic in Miscellaneous
So i will show you the problem, i am parsing a double, converting to string bubt with the double format double text = double.Parse(ScaleBox.Text, System.Globalization.NumberStyles.AllowDecimalPoint, System.Globalization.NumberFormatInfo.InvariantInfo); string result = number[0] + "," + number[1]+ "," + number[2] + "," + number[3] + "," + text; -
Like i said from example in TextBox1.text I have 2.0 How i can got this value?
-
-