Why are there horny preggos in this forum asking how to give birth? Second time this is asked.
how do I give birth?
how do I give birth?
can you explain where i get it tho? never mentioned that.I've said this dozens of times before, craft potion of eve and use it.
Maybe next time try to turn some page before asking
because we haven't gotten to the content that is tagged in the game, dingleberry. Just food for thought, if you are annoyed by helping others then you have the freedom to ignore it and be happy not wasting your own time. No one is obligated; it's just being nice is all. Honestly, I don't understand people that offer help but turn around and get mad at the next person that asks for help. You're deliberately pissing yourself off, but hey I'm just a dude that asked and received so who am I to state that which I am not.Why are there horny preggos in this forum asking how to give birth? Second time this is asked.
Imagine saying this out of context.how do i give birth?
I asked that like a long time ago LOLWhy are there horny preggos in this forum asking how to give birth? Second time this is asked.
Then congratz on your newborn!I asked that like a long time ago LOL
Just play the game, you've eventually get itcan you explain where i get it tho? never mentioned that.
ok, that made me choke on my drink. Ya got me bro. lolImagine saying this out of context.
sorry bro, i was deadass faded. Right now i'm even more but we good gang.That was written in jest...but go off king and write few more paragraphs of how mad I am lol
Ye. I respond to this to get attention towards it, but i really would like if someone could get the apk. Thank you all lots in advanced.Can anyone make the apk version i need it and there is an official version aswell if someone makes it pls let me know
You must be registered to see the links
this doesnt workThe awesome thing about games made with nwjs is how easily you can cheat using the developer tools or add custom scripts, which makes replayability a thing here (considering there is also the infinite nightmare level).
Here is a small tutorial how to do so, if someone wants to try:
In your game root directory (where the TunnelEscape.exe is) you will find a "package.json".
Remove in the json the "--disable-devtools" at the key "chromium-args".
Now if you run the game you can use F12 to open the Chrome developer console.
Switch to "Console" and now you can start to fiddle with the game variables and settings as you wish, if you know some javascript.
Typing in "$" you will see all the possible options you have.
So for example $gameParty._items[36] is how many "Grenade Rounds" you have in your inventory.
- in $gameParty._gold is your money value.
- in $gameParty._weapons is a list of unlocked weapons (in $dataWeapons are all id's for all weapons, set the corresponding id to 1 to enable a weapon for example $gameParty._weapons[6] = 1; to enable the Submachine Gun).
- in $gameActors._data[1] you have hp, sp, vp and exp stats to fiddle with
- in $dataItems you can find the details to every item
- in $gameParty._items are the items you have in your inventory right now
$dataItems[36].name tells you this ID 36 is the "Grenade Round".
You don't have permission to view the spoiler content. Log in or register now.
You don't have permission to view the spoiler content. Log in or register now.
You can even write your own small "mods" if you know a little bit of javascript. Here are some examples.
You don't have permission to view the spoiler content. Log in or register now.
You don't have permission to view the spoiler content. Log in or register now.