[DiscordArchive] Is it the server patches or do u have any patches installed nor associated with them?
[DiscordArchive] Is it the server patches or do u have any patches installed nor associated with them?
Archived author: Jyria • Posted: 2022-01-31T19:24:38.432000+00:00
Original source
Is it the server patches or do u have any patches installed nor associated with them?
Archived author: Kaev • Posted: 2022-01-31T19:42:47.200000+00:00
Original source
Show the related lines of code
Archived author: Kaev • Posted: 2022-01-31T19:45:35.366000+00:00
Original source
But i'd guess you're trying to modify the ValueCollection object of a dictionary instead of the dictionary itself
Archived author: Titi • Posted: 2022-01-31T19:49:45.866000+00:00
Original source
https://discord.com/channels/40766404101...1102253067 still looking for help for my 010 script
Archived author: whatwere • Posted: 2022-01-31T19:53:23.176000+00:00
Original source
You were correct.
Archived author: whatwere • Posted: 2022-01-31T19:53:32.477000+00:00
Original source
The base code is ```
var newVal = e.EditingElement as TextBox;
var dbcRow = openedDB2Storage.Values.ElementAt(rowIdx);
dbcRow[currentOpenDB2, e.Column.Header.ToString()] = newVal.Text;
Console.WriteLine($"RowIdx: {rowIdx} Text: {newVal.Text}");```
Archived author: whatwere • Posted: 2022-01-31T19:54:02.404000+00:00
Original source
It's currently lacking support for new rows, so I'm trying to add something for new rows```
if (e.Column != null)
{
var rowIdx = e.Row.GetIndex();
if (rowIdx > openedDB2Storage.Keys.Count)
throw new Exception();
var newVal = e.EditingElement as TextBox;
if (rowIdx >= openedDB2Storage.Values.Count)
{
DBCDRow newRow = new DBCDRow(rowIdx);
openedDB2Storage.Add(e.Row.PersistId, newRow);
}
var dbcRow = openedDB2Storage.Values.ElementAt(rowIdx);
dbcRow[currentOpenDB2, e.Column.Header.ToString()] = newVal.Text;
Console.WriteLine($"RowIdx: {rowIdx} Text: {newVal.Text}");
}```
Archived author: Kaev • Posted: 2022-01-31T19:56:07.135000+00:00
Original source
Great Good luck with adding support for new rows
Archived author: Robbe • Posted: 2022-01-31T20:05:13.810000+00:00
Original source
I have some custom patches, that includes weapons and stuff
Also some patches from http://forum.warmane.com/showthread.php?t=433477 HD-patch and trees, sunlight
[Embed: Old WotLK Client Graphics Boost]
The Ultimate WotLK Graphics Boost
by truekripp
Introduction
Hello lovely people. I'm truekripp. I'm here to give you everything you need to know about updated models on the WotLK client.
I'm a veteran here on Warmane. Been part of the community since June 2011.
So, I've had a lot of questions about the upgraded models that I use o...
http://forum.warmane.com/showthread.php?t=433477
Archived author: Titi • Posted: 2022-01-31T20:05:47.253000+00:00
Original source
here's your answer