What does this error mean?

Have a really dumb question? Ask it here to get help from the experts (or those with too much time on their hands)

Moderator: Moderator

Post Reply
Message
Author
xnd
Archmage
Posts: 307
Joined: Sat Mar 21, 2015 7:33 pm

What does this error mean?

#1 Post by xnd »

I got this error on my Chrono Xorn race test run after I killed the temporal defiler after coming back from killing the spider queen, but the game seemed to keep working and the timey wimey acheivement popped up, so what about this error?

ive tried putting some things in from chronomancer like below, but even at the start if i choose not to do the quest I get an error (not sure why i would choose to fail the first quest anyway).

chronomancer has this:

copy = {
-- Chronomancers start in Point Zero
class_start_check = function(self)
if self.descriptor.world == "Maj'Eyal" and (self.descriptor.race ~= "Undead" and self.descriptor.race ~= "Dwarf" and self.descriptor.race ~= "Yeek") and not self._forbid_start_override then
self.chronomancer_race_start_quest = self.starting_quest
self.default_wilderness = {"zone-pop", "angolwen-portal"}
self.starting_zone = "town-point-zero"
self.starting_quest = "start-point-zero"
self.starting_intro = "chronomancer"
self.faction = "keepers-of-reality"
self:learnTalent(self.T_TELEPORT_POINT_ZERO, true, nil, {no_unlearn=true})
end
self:triggerHook{"BirthStartZone:chronomancer"}
end,
},

so that quest stuff, if not used, I still can do the quest, but if put in, I still get an error if i opt out. i was ignoring that since, "just do the quest" but it seems there is an error at the end also even though the game seems to run fine.
Attachments
tome-1.3.1-1431405682.png
tome-1.3.1-1431405682.png (75.58 KiB) Viewed 656 times

HousePet
Perspiring Physicist
Posts: 6215
Joined: Sun Sep 09, 2012 7:43 am

Re: What does this error mean?

#2 Post by HousePet »

Its trying to grant the default quest for the race, which you haven't specified.
Change
self.chronomancer_race_start_quest = self.starting_quest
to something like
self.chronomancer_race_start_quest = "start-allied"
My feedback meter decays into coding. Give me feedback and I make mods.

xnd
Archmage
Posts: 307
Joined: Sat Mar 21, 2015 7:33 pm

Re: What does this error mean?

#3 Post by xnd »

thanx though that didnt fix it!

also,

if i put this in the race lua it works,
default_wilderness = {"zone-pop", "angolwen-portal"},

but if i put it in the class just as it does in that chronomancer code, it gives nil error.

also wont give me
self:learnTalent(self.T_TELEPORT_POINT_ZERO, true, nil, {no_unlearn=true})

which is why i had originally just loaded in race a talent renamed 0 instead of zero.

well, i'll try some more things with it.

Post Reply