Forums WoW Modding Support Archives WoWModding Support Archives [DiscordArchive] Your error looks more like something in you lua not being properly filled and then it attempts to co

[DiscordArchive] Your error looks more like something in you lua not being properly filled and then it attempts to co

[DiscordArchive] Your error looks more like something in you lua not being properly filled and then it attempts to co

Pages (2): 1 2 Next
rektbyfaith
Administrator
0
07-01-2021, 04:07 PM
#1
Archived author: Morfium • Posted: 2021-07-01T16:07:30.613000+00:00
Original source

Your error looks more like something in you lua not being properly filled and then it attempts to concat it. Maybe the path to your icons atlas?
rektbyfaith
07-01-2021, 04:07 PM #1

Archived author: Morfium • Posted: 2021-07-01T16:07:30.613000+00:00
Original source

Your error looks more like something in you lua not being properly filled and then it attempts to concat it. Maybe the path to your icons atlas?

rektbyfaith
Administrator
0
07-01-2021, 04:24 PM
#2
Archived author: <o> • Posted: 2021-07-01T16:24:08.476000+00:00
Original source

check the exact line that the error points out, `CharacterCreate.lua` at line 328
rektbyfaith
07-01-2021, 04:24 PM #2

Archived author: <o> • Posted: 2021-07-01T16:24:08.476000+00:00
Original source

check the exact line that the error points out, `CharacterCreate.lua` at line 328

rektbyfaith
Administrator
0
07-01-2021, 04:29 PM
#3
Archived author: 이사야 • Posted: 2021-07-01T16:29:17.440000+00:00
Original source


[Image: unknown.png?ex=690c241c&is=690ad29c&hm=a...4396b5ec6&]
rektbyfaith
07-01-2021, 04:29 PM #3

Archived author: 이사야 • Posted: 2021-07-01T16:29:17.440000+00:00
Original source


[Image: unknown.png?ex=690c241c&is=690ad29c&hm=a...4396b5ec6&]

rektbyfaith
Administrator
0
07-01-2021, 04:32 PM
#4
Archived author: 이사야 • Posted: 2021-07-01T16:32:50.507000+00:00
Original source

i didnt make any changes there
rektbyfaith
07-01-2021, 04:32 PM #4

Archived author: 이사야 • Posted: 2021-07-01T16:32:50.507000+00:00
Original source

i didnt make any changes there

rektbyfaith
Administrator
0
07-01-2021, 04:34 PM
#5
Archived author: stoneharry • Posted: 2021-07-01T16:34:23.695000+00:00
Original source

It's trying to read from Class icon coords table, but doesn't find anything for your class file name
rektbyfaith
07-01-2021, 04:34 PM #5

Archived author: stoneharry • Posted: 2021-07-01T16:34:23.695000+00:00
Original source

It's trying to read from Class icon coords table, but doesn't find anything for your class file name

rektbyfaith
Administrator
0
07-01-2021, 04:34 PM
#6
Archived author: stoneharry • Posted: 2021-07-01T16:34:56.187000+00:00
Original source

See line 327
rektbyfaith
07-01-2021, 04:34 PM #6

Archived author: stoneharry • Posted: 2021-07-01T16:34:56.187000+00:00
Original source

See line 327

rektbyfaith
Administrator
0
07-01-2021, 04:38 PM
#7
Archived author: <o> • Posted: 2021-07-01T16:38:52.435000+00:00
Original source

yeah, looks like you didn't add your class to the CLASS_ICON_TCOORDS table. I don't know why it reads that as a concatenation error, but you'll get errors like that for anything you forgot to define relating to custom classes in other places
rektbyfaith
07-01-2021, 04:38 PM #7

Archived author: <o> • Posted: 2021-07-01T16:38:52.435000+00:00
Original source

yeah, looks like you didn't add your class to the CLASS_ICON_TCOORDS table. I don't know why it reads that as a concatenation error, but you'll get errors like that for anything you forgot to define relating to custom classes in other places

rektbyfaith
Administrator
0
07-01-2021, 04:45 PM
#8
Archived author: 이사야 • Posted: 2021-07-01T16:45:23.636000+00:00
Original source

hmm
rektbyfaith
07-01-2021, 04:45 PM #8

Archived author: 이사야 • Posted: 2021-07-01T16:45:23.636000+00:00
Original source

hmm

rektbyfaith
Administrator
0
07-01-2021, 04:47 PM
#9
Archived author: 이사야 • Posted: 2021-07-01T16:47:31.573000+00:00
Original source

CLASS_ICON_TCOORDS = {
["WARRIOR"] = {0, 0.25, 0, 0.25},
["MAGE"] = {0.25, 0.49609375, 0, 0.25},
["ROGUE"] = {0.49609375, 0.7421875, 0, 0.25},
["DRUID"] = {0.7421875, 0.98828125, 0, 0.25},
["HUNTER"] = {0, 0.25, 0.25, 0.5},
["SHAMAN"] = {0.25, 0.49609375, 0.25, 0.5},
["PRIEST"] = {0.49609375, 0.7421875, 0.25, 0.5},
["WARLOCK"] = {0.7421875, 0.98828125, 0.25, 0.5},
["PALADIN"] = {0, 0.25, 0.5, 0.75},
["DEATHKNIGHT"] = {0.7421875, 0.98828125, 0.5, 0.75},
["ALCHEMIST"] = {0.25, 0.49609375, 0.5, 0.75},
["NECROMANCER"] = {0.49609375, 0.49609375,0.5,0.75},
["DEMONSLAYER"] = {0, 0.7421875, 0.75, 0.75},
};
rektbyfaith
07-01-2021, 04:47 PM #9

Archived author: 이사야 • Posted: 2021-07-01T16:47:31.573000+00:00
Original source

CLASS_ICON_TCOORDS = {
["WARRIOR"] = {0, 0.25, 0, 0.25},
["MAGE"] = {0.25, 0.49609375, 0, 0.25},
["ROGUE"] = {0.49609375, 0.7421875, 0, 0.25},
["DRUID"] = {0.7421875, 0.98828125, 0, 0.25},
["HUNTER"] = {0, 0.25, 0.25, 0.5},
["SHAMAN"] = {0.25, 0.49609375, 0.25, 0.5},
["PRIEST"] = {0.49609375, 0.7421875, 0.25, 0.5},
["WARLOCK"] = {0.7421875, 0.98828125, 0.25, 0.5},
["PALADIN"] = {0, 0.25, 0.5, 0.75},
["DEATHKNIGHT"] = {0.7421875, 0.98828125, 0.5, 0.75},
["ALCHEMIST"] = {0.25, 0.49609375, 0.5, 0.75},
["NECROMANCER"] = {0.49609375, 0.49609375,0.5,0.75},
["DEMONSLAYER"] = {0, 0.7421875, 0.75, 0.75},
};

rektbyfaith
Administrator
0
07-01-2021, 04:47 PM
#10
Archived author: 이사야 • Posted: 2021-07-01T16:47:39.815000+00:00
Original source

gonna remove the last 2
rektbyfaith
07-01-2021, 04:47 PM #10

Archived author: 이사야 • Posted: 2021-07-01T16:47:39.815000+00:00
Original source

gonna remove the last 2

Pages (2): 1 2 Next
Recently Browsing
 1 Guest(s)
Recently Browsing
 1 Guest(s)