3.00 star(s) 7 Votes

DarkXDaemon

Member
May 14, 2018
157
75
There is soooo many exception errors, every time i run from battle theres one every time i do anything when fighting a slime, if i use any abiility it says Exception: Possible infinite loop. The game is interesting and has great potential but the creator either needs help/better help with coding or needs to test the game before release if not already doing so.
 

anon25687

New Member
Jan 14, 2023
3
3
Heres how you do it. You need to enable the console (search this thread for how to do that, Im not rehashing that). Once you have the console enabled, open it and type the following command:

for scene in range(0, len(galleryunlock)): galleryunlock[scene] = 1

Technical side for those interested, the game stores what scenes you have unlocked in a list "galleryunlock", with each position being a 1 or 0. 1 for unlocked, 0 for locked. the command loops through the list starting at index 0 (the first position because this is python and arrays start at 0) and loops to the last index, which at the time of posting (0.4) is 34. this should work in later versions provided variable names dont change, as the len() function checks to see how long the galleryunlock list is. if there is a specific scene you missed and only want to unlock that one, use the following command:

galleryunlock = 1

and replace the "i" in the square brackets with the number you want. the first scene is would be 0, the second 1, and so on. lastly the scenes index go across the rows and then jump down to the next row
 

Bang From 600

Newbie
Jan 11, 2018
27
8
Amazing game I have enjoyed everysingle moment ! the animation and the art style is prefect keep going doing it, my personal opinion you should keep the girls available on the map so you can repeat the scene without the gallery so you can really feel like an overlord.
 

lurker55555

Member
Dec 5, 2019
265
115
Hey! Thanks for the complete review again! It's a good way to know what could be improved. Of course a lot of stuff is also a lack of time haha (the quick travel is already in my mind, just have to make it without bugging everything. )

If you have Discord, you can contact me (username: void_club). It could be good to have your input on some stuff since you've been giving exhaustive review on it a couple of time ;)
just noticed this as i dont have much of a habit to check if someone replied, happy to help after all its a decent piece of game atleast for now who knows what it might grow into i nthe future
 

ZomBotHD

Newbie
Nov 9, 2020
29
42
Anyone has a walkthrough regarding the kobolds. They are so time consuming lol.
The trick with them is sound. Mouse over one of the paths. I think if it stays loud, that's the right way. If it gets quiet, it's the wrong way (or vice versa, but 1 will react one way, the other 2 react the other way).
 

somebodynobody

Engaged Member
May 11, 2017
3,251
4,200
Where are the options? Having audio just be on or off, is bad design.

I'm sorry, but an uncaught exception occurred.

While running game code:
File "game/battle.rpy", line 1886, in <module>
NameError: name 'cryptstat' is not defined

Most of the UI is not designed well. Like health/Luck/Quest being only on the map instead of always shown to the player.

Movement UI is just bad. No quick way to go anywhere, having to click to each point in between to get closer. Checking on how your resource goblins are set forces you to have to move them.

Battle UI. If you click the wrong attack you can't unselect it. If you click an attack and there is only 1 enemy it should auto target that enemy.

Items in battle that are consumable should be mentioned in crafting menu.

Having quests in the quest log be on before you can do them, like the dryad before you get the ability to make any items, which happens post having to make sleeping stuff.

Knowing what your teammate will do would be helpful.

Knowing what the upgrades actually upgrade would be helpful.

Some enemy groups don't make sense, like rangers and gnolls, knights and anything not human,

Story wise, the dryads being with the spiders doesn't make sense since the whole point is you getting their skin to make the spiders have birds, if they are already there this has no purpose. Similar the knights with ghosts or other non humans.

Is very annoying your website icon is directly in place where you have to click for the map, so the player will accidentally go to a website which may be filled with malicious programs.

There is no skip turn. I had a point where I was against guards and they shackled me on last turn so there is no card draw, which means I can only try to run away instead of wait and draw.

bunch of spelling errors especially the hill area.

Grinding is a bit over the top for needing the stuff to upgrade.

There is a few harsh power spikes in the game, first is when you can get caught against 4 guards, second is the 2 guard to knight/guard/ranger fight if you go alone. Third is the inquisitor themselves. Then after becoming a huge strong orc you still have weak abilities and take large amounts of damage.

after Orc encampment it is a bit weird that you have an ally in your party since you didn't tell them.

So many one offs like the town guard leader, the village lady in black, the goblin girl, Orce leader, etc.

Also you shouldn't be able to send orcs to goblin territory to look for stuff.

A bit too much RNG, there should be basically none in the combat damage, a multi hit thing spread across multiple enemies can be rng on who and how many times it hits. Minor rng in getting stuff.

Hover over gallery pictures should give hints on where a thing is located.

Way too much same face syndrome. You can have a style, but if you can swap hair color and that is a different character in your game it is way too close.

Sucks on the moment you get access to more people so you can upgrade things you then lose out on the ability to do so.

Different art is weird, really should keep to one type.

I would suggest trying out the game "The Pale Orc".

Quests that feel like they should feel urgent don't. Like the Necromancer thing is mentioned but like after 10 days I stumbled on Nia wanting slime for wounds. The people who would have needed that would be dead, so maybe have that quest be moved up. Like she auto mentions it.

Why does the MC not have his way with all of the women whenever he wants? It is a weird decision everything is story locked, and even weirder that player doesn't get a choice on things. Like he was angry about the inquisitor maybe doing bad to Zara, but auto gives her to a slime. Especially if MC has never even been with her because the non paid version.

No actual inventory or way to check on quests that require X things, also things maybe not always dropping items.

Goblin building a path saying +2 days, what does this mean? It will take them 2 days, they are messing up so much so it will take 2 more days than if they never touched it?

Is the Gnoll quest broken if you are an orc and then do it? Since the farmer girl icon vanished and you can't seem to move the women around.

Also if you have both the zombie repellant and the zombie flesh quest you can't do the repellant until you get all the flesh.
 
Last edited:
  • Like
Reactions: The void club

Pingas941

New Member
Dec 3, 2022
4
1
Heres how you do it. You need to enable the console (search this thread for how to do that, Im not rehashing that). Once you have the console enabled, open it and type the following command:

for scene in range(0, len(galleryunlock)): galleryunlock[scene] = 1

Technical side for those interested, the game stores what scenes you have unlocked in a list "galleryunlock", with each position being a 1 or 0. 1 for unlocked, 0 for locked. the command loops through the list starting at index 0 (the first position because this is python and arrays start at 0) and loops to the last index, which at the time of posting (0.4) is 34. this should work in later versions provided variable names dont change, as the len() function checks to see how long the galleryunlock list is. if there is a specific scene you missed and only want to unlock that one, use the following command:

galleryunlock = 1

and replace the "i" in the square brackets with the number you want. the first scene is would be 0, the second 1, and so on. lastly the scenes index go across the rows and then jump down to the next row
Do i need the fuil version because the free version is only giving me an error
 

anon25687

New Member
Jan 14, 2023
3
3
Do i need the fuil version because the free version is only giving me an error
quite possibly. ive been trying to test it on the free version but cant since I have a save from the full version. What error are you getting exactly?
 

empty sides

Newbie
Aug 22, 2018
36
23
How do i get the recipes from the tinker, currently on the dryad quest no idea how to progress on it

also really fun game
 

The void club

Member
Game Developer
Nov 21, 2018
348
140
How do i get the recipes from the tinker, currently on the dryad quest no idea how to progress on it

also really fun game
There should be a breaking option at the tinker, you can break the attack to get the recipe and then make more of them. Someone mentioned it might not be available before some point in the main quest (I think it was fixed in the latest version but not sure about it fully, so if the option is not there, you have to progress in the main quest)
 

empty sides

Newbie
Aug 22, 2018
36
23
There should be a breaking option at the tinker, you can break the attack to get the recipe and then make more of them. Someone mentioned it might not be available before some point in the main quest (I think it was fixed in the latest version but not sure about it fully, so if the option is not there, you have to progress in the main quest)
Ah, Thank you very much I'm only on post Goblin king killing so that would explain why I can't continue it yet.
 

The void club

Member
Game Developer
Nov 21, 2018
348
140
Hi! We made the public release for 0.5!

So now, I warn you, we added a break/repair system on the attacks. We also reduce the cost of crafting an upgrading. But we are still balancing stuff based on players experience, so 'please' do not comment : "ArGh BrEaKing SyStem, IT's ToO HaRD" or something like that. We're trying solutions to make things less grinding (less foraging for ressources but you still ahve to manage your attacks in hand). We also added a stats point system and enemy's stats to defend and avoid. Again, it probably need balancing, but this can only be done with your help, so feel free to comment on what you think work or doesnt work, but if you just say : "That's shit!", we'll think the same of your comment.

On another note, here some other changes:

-New Main story and side quest
-Auto travel, you can click on your destination directly
-New combat system, you can now defend, same for the enemies, and they can use a normal attack or special attacks, your allies will be helpful in trying to strategies. You will also have stats to power you attacks, defense, dodging or luck abilities.
-More details on the overnight report (still need to be improved on some points.
-Lot more use of your allies, enemy troops might also be in your way, so you'll have to ask your allies for some help.
-A lot of bugged details (visual and some with small effect)
- new visual design

Let us know what you think! ;)

desktop:



Web:



up5.jpg
 

ninjasamuri

Member
May 28, 2018
433
350
Probably has to do with degrading women. Bringing them down to the level of fucking (and eventually willingly wanting to fuck) a universally understood to be weak and disgusting bottom tier monster. Kink gonna kink.
I have enjoyed a few Goblin MC games, in spite of playing as a goblin. This theory of yours makes sense, though I wonder if it is true. Almost all porn games are degrading to women with either borderline rape/molestation or straight up rape/slave scenarios. I always wonder if some of these elements are happening for real psychological reasons or just as copy-cat. A lot of games have zero new ideas. They just pick and choose from the ideas others had.

Anyway, just a thought, and now I will go back to the regular programing of mindless titillation.
I think it is an acceptance thing. Some men feel tiny, disgusting, unwanted, and monstrous and can relate to the zeitgeist of playing as a goblin. If the ladies can fall for these nasty little goblins in such games they'd fall for whatever :p.

Same sorts of reasons you get tons and tons of games with Shota / Tiny-yet-adult men.
Ugly bastard smut is an offshoot of the same concept.

There are far, far more games where you play as a goblin than where you play as a powerful monster. I think they are just baseline more relatable to the bulk of porn-game consumers.

Cool for ppl who like playing as a goblin I guess. Not too interesting to me unless the goblin can evolve into something stronger.
>Goblins are the ugly bastard of monsters
>Orcs even Pig Orcs are too handsome to be that by virtue of being tall and muscular
>Because nothing is worse or more pathetic than being raped and mind broken by this
The horror of the realization is enough to shatter wills
 
3.00 star(s) 7 Votes