- Feb 8, 2018
- 527
- 955
After Agent17 swimsuit scene you cannot continue by going to doctor with your knee - that will be added in some future update.How to meet the doctor? or is it not on this update yet?
Last edited:
After Agent17 swimsuit scene you cannot continue by going to doctor with your knee - that will be added in some future update.How to meet the doctor? or is it not on this update yet?
I see, it means i already finished playing this update thenAfter Agent17 swimsuit scene you cannot continue by going to doctor with your knee - that will be added in some future update.
Seems to be a logic error.
game\script\DataTable\ItemData.rpy
def __init__ (self, pKey):
it sets the original count to 1.def Add(self, count):
it adds whatever to the item count.game\script\Setting\function.rpy
def PutItem(pKey, count):
it checks if you already have the item but if you don't it initializes it THEN adds the count to it.game\script\DataTable\ItemData.rpy
class ItemData(InvaentoryInterface):
# Append Method
def Set(self, count):
self.count = count
game\script\Setting\function.rpy
def PutItem(pKey, count):
# Change
item = GetItem(pKey)
if item:
item.Add(count)
else:
g_InventoryItem.append(ItemData(pKey))
g_InventoryItem[-1].Add(count)
# To
item = GetItem(pKey)
if item:
item.Add(count)
else:
g_InventoryItem.append(ItemData(pKey))
item = GetItem(pKey)
item.Set(count)
# g_InventoryItem[-1].Add(count)
My version is only a patched version based on the original version, which is temporary and may report errors with a small probabilityI have always thought it is just a bug, but confirmation would be nice.
My version is only a patched version based on the original version, which is temporary and may report errors with a small probability
Where likely android?Agent17 [v0.18.5] [HEXATAIL]
COMPRESSED
SIZE ~ 420 MB
PC/MAC:You must be registered to see the links- WORKUPLOAD - PIXELDRAIN -You must be registered to see the links
You don't have permission to view the spoiler content. Log in or register now.
\Agent17-0.18.5-pc\game\anti-anti-cheat.rpycan anyon tell me how to use the anti- anti- cheat
yea but i cant seem to get the anti anti cheat to download as rpy\Agent17-0.18.5-pc\game\anti-anti-cheat.rpy
You don't have permission to view the spoiler content. Log in or register now.
Right click it, then "save link as..."yea but i cant seem to get the anti anti cheat to download as rpy