Forums WoW Modding Support Archives WoWModding Support Archives [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?

[DiscordArchive] Is it the server patches or do u have any patches installed nor associated with them?

rektbyfaith
Administrator
0
01-31-2022, 07:24 PM
#1
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?
rektbyfaith
01-31-2022, 07:24 PM #1

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?

rektbyfaith
Administrator
0
01-31-2022, 07:42 PM
#2
Archived author: Kaev • Posted: 2022-01-31T19:42:47.200000+00:00
Original source

Show the related lines of code
rektbyfaith
01-31-2022, 07:42 PM #2

Archived author: Kaev • Posted: 2022-01-31T19:42:47.200000+00:00
Original source

Show the related lines of code

rektbyfaith
Administrator
0
01-31-2022, 07:45 PM
#3
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
rektbyfaith
01-31-2022, 07:45 PM #3

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

rektbyfaith
Administrator
0
01-31-2022, 07:49 PM
#4
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
rektbyfaith
01-31-2022, 07:49 PM #4

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

rektbyfaith
Administrator
0
01-31-2022, 07:53 PM
#5
Archived author: whatwere • Posted: 2022-01-31T19:53:23.176000+00:00
Original source

You were correct.
rektbyfaith
01-31-2022, 07:53 PM #5

Archived author: whatwere • Posted: 2022-01-31T19:53:23.176000+00:00
Original source

You were correct.

rektbyfaith
Administrator
0
01-31-2022, 07:53 PM
#6
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}");```
rektbyfaith
01-31-2022, 07:53 PM #6

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}");```

rektbyfaith
Administrator
0
01-31-2022, 07:54 PM
#7
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}");
}```
rektbyfaith
01-31-2022, 07:54 PM #7

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}");
}```

rektbyfaith
Administrator
0
01-31-2022, 07:56 PM
#8
Archived author: Kaev • Posted: 2022-01-31T19:56:07.135000+00:00
Original source

Great Good luck with adding support for new rows
rektbyfaith
01-31-2022, 07:56 PM #8

Archived author: Kaev • Posted: 2022-01-31T19:56:07.135000+00:00
Original source

Great Good luck with adding support for new rows

rektbyfaith
Administrator
0
01-31-2022, 08:05 PM
#9
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
rektbyfaith
01-31-2022, 08:05 PM #9

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

rektbyfaith
Administrator
0
01-31-2022, 08:05 PM
#10
Archived author: Titi • Posted: 2022-01-31T20:05:47.253000+00:00
Original source

here's your answer
rektbyfaith
01-31-2022, 08:05 PM #10

Archived author: Titi • Posted: 2022-01-31T20:05:47.253000+00:00
Original source

here's your answer

Recently Browsing
 
Recently Browsing