Skip to main content

On Sale: GamesAssetsToolsTabletopComics
Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

Okay, so by following your guide I did manage to make a Custom Request that does appear in Slaver's Guilds, however, it does not show the requirements that I made, and if I try to turn it in using a servant that does fulfill the requirements, it simply does not allow me to. Would you know how to fix this? It's entirely possible I may have misspelled a requirement in the file and it made everything else break. 

There are too many potential problems to offer solutions without knowing the exact details as you coded them.  A misspelling can be corrected by comparing with similar quests.  Either post the lines of the offending details or the entire new request.

I have found that the guild request system was minimally complete so if you are trying to do something that no other request does, then it may not exist.

My entire request is as follows (line-by-line in Notepad++):


quest024 = {

code = '024',

questreq = true,

shortdescription = "Test Title",

description = 'Test Description. ',

reqs = [['sex', 'eq', 'female'], ['obed', 'gte', 50], ['beauty', 'gte', 60], ['char', 'gte', 20]],

reqstemp = [],

time = round(rand_range (20,40)),

reward = round(rand_range (175, 225))*10,

location = ['any'],

difficulty = 'medium'

},


I've compared it a good 20+ times to other quests but can't figure out the problem. 

['char', 'gte', 20]
I assume this should be 'charm'.

Char is charm, yes. I was going based on stats I saw in the other quests, which I could have sworn spelled it char. I'll change that and see if it fixes. 

That has fixed it, thanks! Figures it would be 1 letter that messed everything up x_x