What's new

RPG RPG Maker [ ティー・エンタ・ぴー / T-ENTA-P] ゾンビゾーン・ガンスイーパー / Zombie Zone Gunsweeper (RE127139, RJ127139)


yariel

Tentacle God
Joined
Jan 16, 2014
Messages
1,209
Reputation score
119
Re: Zombie Zone Gun Sweeper (T-ENTA-P)

Can someone explain to me why there is no defend command in the 1.05 ver. ?And if there is where to find it cause i have no clue.
...
hm ? I almost think it's the game mechanic so you can't defend ...
I wonder if it's official or bug ...
 

willaberhaben

Demon Girl Pro
Joined
Jan 27, 2013
Messages
137
Reputation score
11
Re: Zombie Zone Gun Sweeper (T-ENTA-P)

Can someone explain to me why there is no defend command in the 1.05 ver. ?And if there is where to find it cause i have no clue.
Are you playing with translation?
I had my guard command disappear too when I used it.
However in a new game+ I got it back as command.
 

yariel

Tentacle God
Joined
Jan 16, 2014
Messages
1,209
Reputation score
119
Re: Zombie Zone Gun Sweeper (T-ENTA-P)

Are you playing with translation?
I had my guard command disappear too when I used it.
However in a new game+ I got it back as command.
...
I guess it's somekind of translation bug ...
will it get disappear again if you use it ?
what is being carried over for NG+ ?
 

Arcsete

Demon Girl Pro
Joined
Nov 14, 2013
Messages
163
Reputation score
3
Re: Zombie Zone Gun Sweeper (T-ENTA-P)

i dont know get gasoline
she dont get from the house of dr
what i do what i use
 

yariel

Tentacle God
Joined
Jan 16, 2014
Messages
1,209
Reputation score
119
Re: Zombie Zone Gun Sweeper (T-ENTA-P)

...
I run out of bullet and now I can't fight at all since one of character can't get turn (because she must shot) ...
*sigh* ... restarting again ...

(is there anyone have a good NG+ savegame ?)
 

tag111

Demon Girl
Joined
Feb 13, 2013
Messages
71
Reputation score
14
Re: Zombie Zone Gun Sweeper (T-ENTA-P)

i dont know get gasoline
she dont get from the house of dr
what i do what i use


I just noticed this in version 1.05. I didn't even need to fill the gasoline container for some reason I just interacted with the generator outside the shopping center.

Also yariel you could have the chick without bullets use some type of item(healing or you could reload the fatguys bow if you were that far).
 

yariel

Tentacle God
Joined
Jan 16, 2014
Messages
1,209
Reputation score
119
Re: Zombie Zone Gun Sweeper (T-ENTA-P)

I just noticed this in version 1.05. I didn't even need to fill the gasoline container for some reason I just interacted with the generator outside the shopping center.

Also yariel you could have the chick without bullets use some type of item(healing or you could reload the fatguys bow if you were that far).
...
haven't found bow ... and the resource item is limited ...
I guess it's my mistake trying to grind and farm item ...
Zombie only drop ONE bullet ... and that's if you lucky ...
most of time, you need at least 1 bullet or even more ... 2-5 ?
get a mass "what a waste" feeling if the shot get missing ..

this gamemaker is forcing gamer to progress so we can't stay too long in 1 location ...
I guess same with the previous game (Bounty Hunter ?) ... *sigh* ...
 

Xcaliberium

Lurker
Joined
Apr 26, 2009
Messages
293
Reputation score
33
Re: Zombie Zone Gun Sweeper (T-ENTA-P)

You can craft your own bullets in groups of 7 round clips or 20 round clips, just use the craft command.
 

Darkstrain

Evard's Tentacles of Forced Intrusion
Joined
Aug 26, 2013
Messages
585
Reputation score
86
Re: Zombie Zone Gun Sweeper (T-ENTA-P)

in bounty hunter 2 you could also buy bullets: in the more you know
and in 2 since money is infinite you needed not to care about them.
 

yariel

Tentacle God
Joined
Jan 16, 2014
Messages
1,209
Reputation score
119
Re: Zombie Zone Gun Sweeper (T-ENTA-P)

You can craft your own bullets in groups of 7 round clips or 20 round clips, just use the craft command.
...
and it still cost money ... (run out of money *shrug*)
not to mention crafting also need more money ...
need that (defend) option activated, or somekind trick to obtain more bullet ...
(getting defeated can obtain some Sperm, but not item, bot to mention it feels ugly if every encounter goes like that)

in bounty hunter 2 you could also buy bullets: in the more you know
and in 2 since money is infinite you needed not to care about them.
...
yep, already know that ...
if you access casino and abuse save / load ...
unfortunately I don't find any casino in this zombie-fied game ...
 

Lozagal

Demon Girl Pro
Joined
Jan 17, 2011
Messages
123
Reputation score
27
Re: Zombie Zone Gun Sweeper (T-ENTA-P)

...
and it still cost money ... (run out of money *shrug*)
not to mention crafting also need more money ...
need that (defend) option activated, or somekind trick to obtain more bullet ...
(getting defeated can obtain some Sperm, but not item, bot to mention it feels ugly if every encounter goes like that)


...
yep, already know that ...
if you access casino and abuse save / load ...
unfortunately I don't find any casino in this zombie-fied game ...

You can always use cheat-engine if you are stuck. Just search for any number you want to change, multiply it by 2 and add 1. Then change the number (spending money, bullets ect.) and search for the new value again until you know which one is the correct.
 

Wessex

Tentacle God
Joined
Apr 1, 2010
Messages
1,128
Reputation score
152
Re: Zombie Zone Gun Sweeper (T-ENTA-P)

Or you can do this... (so you don't have to do that *2+1 stuff)

Steps:
-Start Cheat Engine
-Open any process
-Right click the "value type" combo box
-Click "define new custom type (auto assemble)"
-Replace the existing script with the script posted below and click OK
-Chose the new option you made
-Profit?




Code:
alloc(TypeName,256)
alloc(ByteSize,4)
alloc(PreferedAlignment, 4)
alloc(ConvertRoutine,1024)
alloc(ConvertBackRoutine,1024)

TypeName:
db 'RPG VX type',0

ByteSize:
dd 4

PreferedAlignment:
dd 1


//The convert routine should hold a routine that converts the data to an nteger (in eax)
//function declared as: stdcall int ConvertRoutine(unsigned char *input);

//Note: Keep in mind that this routine can be called by multiple threads at the same time.

ConvertRoutine:
[32-bit]
push ebp
mov ebp,esp
push ecx
mov ecx,[ebp+8]
[/32-bit]

//at this point ecx contains the address where the bytes are stored

//put the bytes into the eax register
mov eax,[ecx] //second fun fact, addressing with 32-bit registers doesn't work in 64-bit, it becomes a 64-bit automatically (most of the time)
shr eax,1 //shift right by 1 bit (divide by 2)

//and now exit the routine
[64-bit]
ret
[/64-bit]
[32-bit]
pop ecx
pop ebp
ret 4
[/32-bit]

//The convert back routine should hold a routine that converts the given integer back to a row of bytes (e.g when the user wats to write a new value)
//function declared as: stdcall void ConvertBackRoutine(int i, unsigned char *output);
ConvertBackRoutine:
[32-bit]
push ebp
mov ebp,esp
push edx //save the registers
push ecx
mov edx,[ebp+0c]
mov ecx,[ebp+08]
[/32-bit]

//at this point edx contains the address to write the value to
//and ecx contains the value

push eax
push edx


mov edx,[edx] //edx now contains the original value
and edx,1 //only save the first bit

mov eax,ecx //eax gets the user input value
shl eax,1 //shift left by 1 bit (multiply by 2)
or eax,edx //add the bits of the original value

pop edx
mov [edx],eax //write the new value into the old value
pop eax

[64-bit]
//everything is back to what it was, so exit
ret
[/64-bit]

[32-bit]
//cleanup first
pop ecx
pop edx
pop ebp
ret 8
[/32-bit]
PS.: I got this from on of the RPG developer forums.
 

yariel

Tentacle God
Joined
Jan 16, 2014
Messages
1,209
Reputation score
119
Re: Zombie Zone Gun Sweeper (T-ENTA-P)

...
urgh ... I don't want to use cheat like that if possible ...
but at this point of my gameplay it seems a must ... *sigh* ...
thanks for the Cheat Engine info ... :eek:
(hoping that "Defend" option get back or she have somekind alternative thing to skip her turn)

"-Right click the "value type" combo box
-Click "define new custom type (auto assemble)"
-Replace the existing script with the script posted below and click OK
-Chose the new option you made
-Profit?
" ...
I use 6.3 cheat engine ...
can you please point me where is the "value type" combo box ?
 
Last edited:

tag111

Demon Girl
Joined
Feb 13, 2013
Messages
71
Reputation score
14
Re: Zombie Zone Gun Sweeper (T-ENTA-P)

...
urgh ... I don't want to use cheat like that if possible ...
but at this point of my gameplay it seems a must ... *sigh* ...
thanks for the Cheat Engine info ... :eek:
(hoping that "Defend" option get back or she have somekind alternative thing to skip her turn)
This is a new game with all the scenes unlocked plus an extra set of garments for both the ladies

I have a feeling the defend option was removed by accident when the maker applied the english interface.
 

Attachments

Last edited:

yariel

Tentacle God
Joined
Jan 16, 2014
Messages
1,209
Reputation score
119
Re: Zombie Zone Gun Sweeper (T-ENTA-P)

This is a new game with all the scenes unlocked plus an extra set of garments for both the ladies

I have a feeling the defend option was removed by accident when the maker applied the english interface.
...
um, thanks ..
but I tried to continue my own save first ...
if it's can't be done, then I use yours ... thanks a lot ... :eek:
 

Arcsete

Demon Girl Pro
Joined
Nov 14, 2013
Messages
163
Reputation score
3
Re: Zombie Zone Gun Sweeper (T-ENTA-P)

how open the of shopping? this is a question i have a mistake the gerator turn on but the door of boss is closed
 

tag111

Demon Girl
Joined
Feb 13, 2013
Messages
71
Reputation score
14
Re: Zombie Zone Gun Sweeper (T-ENTA-P)

how open the of shopping? this is a question i have a mistake the gerator turn on but the door of boss is closed
I made a rather lengthy guide on page 16. This game has quite a few bugs in the version 1.00. Tonc bought the version 1.05e I believe from the english DLsite and posted a link on page 17. I think most of the major glitches are gone, but unfortunately you can't defend...not sure if thats the case with the ordinary 1.05 japanese version.

If you continue with version 1.00 then your going to have to start over at the shop you have to beat the purple haired doctor ghost and interact with the metal shudders before you interact with the generator. After interacting with the generator go to the dr ghosts house with the locked golden chest and interact with the barrel to get gasoline.
 

jur07dbe

Tentacle Monster
Joined
Jun 17, 2012
Messages
298
Reputation score
31
Re: Zombie Zone Gun Sweeper (T-ENTA-P)

looking at the artwork for the english version, there doesnt seem to be any defend animations
 

yariel

Tentacle God
Joined
Jan 16, 2014
Messages
1,209
Reputation score
119
Re: Zombie Zone Gun Sweeper (T-ENTA-P)

looking at the artwork for the english version, there doesn't seem to be any defend animations
...
is the previous version have ?
or did the developer remove it on purpose (including the function) ?
if it's on purpose, then it's a BAD decision ... :(
 

Wessex

Tentacle God
Joined
Apr 1, 2010
Messages
1,128
Reputation score
152
Re: Zombie Zone Gun Sweeper (T-ENTA-P)

"-Right click the "value type" combo box
-Click "define new custom type (auto assemble)"
-Replace the existing script with the script posted below and click OK
-Chose the new option you made
-Profit?
" ...
I use 6.3 cheat engine ...
can you please point me where is the "value type" combo box ?
Where you input the search parameter "2 bytes, 4 bytes, 8 bytes" and so on. Oh an one more thing you can only right click it if your search function is idle.
 
Top