How to destroy building without explosionAvo User Offline 31.05.12 10:15:16 pm Hi! I have just a little question: Is it possible to destroy building without explosion? If it's, tell me how, please.
Re: How to destroy building without explosionTimeQuesT User Offline 31.05.12 10:21:55 pm set it's image via imagepos out of map and destroy it via server parse.
Re: How to destroy building without explosionApache uwu User Offline 31.05.12 10:47:29 pm I believe the imageID is the same as the objectID, correct me if I'm wrong.
Re: How to destroy building without explosionAvo User Offline 31.05.12 11:00:22 pm Thanks ver much, it works.
Re: How to destroy building without explosionEngiN33R Moderator Offline 01.06.12 02:39:57 pm Infinite Rain has writtenparse('killobject ... What part of without explosion do you not understand?
Re: How to destroy building without explosionDeleted User 01.06.12 03:50:48 pm Oh, I thought he want to destroy building not with using explosion
Re: How to destroy building without explosionDevil-Thanh GAME BANNED Offline 01.06.12 04:06:55 pm first..... try to find object's possision ( tilex and tiley of the object) x = ... y = ... then use this for i=1,#object(0,"table") do if object(i,"tilex")==x and object(i,"tiley")==y then parse("killobject "..i) end end I think it works
Re: How to destroy building without explosionTimeQuesT User Offline 01.06.12 04:08:22 pm @ Devil-Thanh: Avo has writtenThanks ver much, it works.