luizragna Posted July 22, 2017 Group: Members Topic Count: 35 Topics Per Day: 0.01 Content Count: 107 Reputation: 28 Joined: 02/12/14 Last Seen: January 9, 2023 Share Posted July 22, 2017 (edited) Hello. I'm doing an NPC in the persagem receive damage while listening to him. I would like to do with that when he got out of close looks from receiving damage. pay_arche,63,145,4 script Guard#2 45,3,3,{ OnTouch: set @fire,1; while (@fire == 1){ specialeffect2 49,"+strcharinfo(0)+"; heal -2,0; sleep2 500; } } I don't know if I'm doing the right way.... Basically I wish the variable @fire came back to = 0 Edited July 22, 2017 by luizragna Quote Link to comment Share on other sites More sharing options...
2 Z3R0 Posted July 22, 2017 Group: Members Topic Count: 39 Topics Per Day: 0.01 Content Count: 618 Reputation: 201 Joined: 11/09/11 Last Seen: June 14, 2024 Share Posted July 22, 2017 (edited) You need to include a check for getmapxy () and see if the char is still within the area... if not set char var fire to 0 Edited July 22, 2017 by Z3R0 2 Quote Link to comment Share on other sites More sharing options...
1 luizragna Posted July 22, 2017 Group: Members Topic Count: 35 Topics Per Day: 0.01 Content Count: 107 Reputation: 28 Joined: 02/12/14 Last Seen: January 9, 2023 Author Share Posted July 22, 2017 59 minutes ago, Z3R0 said: You need to include a check for getmapxy () and see if the char is still within the area... if not set char var fire to 0 Thanks! I Solved! pay_arche,63,145,4 script Guard#2 45,3,3,{ OnTouch: set @fire,1; while (@fire == 1){ specialeffect2 49,"+strcharinfo(0)+"; heal -2,0; sleep2 500; getmapxy(@mapname$, @mapx, @mapy, UNITTYPE_PC, ""+strcharinfo(0)+""); if ((@mapx < 60) || (@mapx > 65) || (@mapy < 143) || (@mapy > 147)) @fire = 0; } } 1 Quote Link to comment Share on other sites More sharing options...
0 Z3R0 Posted July 22, 2017 Group: Members Topic Count: 39 Topics Per Day: 0.01 Content Count: 618 Reputation: 201 Joined: 11/09/11 Last Seen: June 14, 2024 Share Posted July 22, 2017 Perfect! 1 Quote Link to comment Share on other sites More sharing options...
Question
luizragna
Hello. I'm doing an NPC in the persagem receive damage while listening to him. I would like to do with that when he got out of close looks from receiving damage.
I don't know if I'm doing the right way....
Basically I wish the variable @fire came back to = 0
Edited by luizragnaLink to comment
Share on other sites
3 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.