Page 1 of 1

How to make the monster disappear?

Posted: Wed Sep 04, 2013 8:37 pm
by mikan656386
sorry, English is not good,
Will this mean.
This is the Course of Terror by Bot_romka program.

function RemoveObjeckt()
local objectList = CObjectList();
objectList:update();
local objSize = objectList:size()
for i = 0,objSize do
local obj = objectList:getObject(i);
if obj.Id == 113108 or obj.Id == 113109 or obj.Id == 113110 or obj.Id == 113111 or obj.Id == 113113 then
if obj.X > 3800 then
memoryWriteFloatPtr(getProc(), obj.Address + 4, 0xB0, 3800)
end
end
end
end;

If you can make objects disappear, can you let Ancient Treasure monster disappear?
How do I do?

Re: How to make the monster disappear?

Posted: Wed Sep 04, 2013 11:33 pm
by lisa
The object is still there but you just can't see it, so the monsters would still be there and still hit you but you can't see them.

Re: How to make the monster disappear?

Posted: Thu Sep 05, 2013 5:40 am
by mikan656386
The understanding, thanks replied.