luizragna Posted December 22, 2018 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 December 22, 2018 Hello guys! I want make the poporing useskill in other mob. In this case, he cast, but don't happen anything. payon,162,219,4 script Unit Master 101,{ .amount = 1; monster ("payon",167,215,"Poporing",1031,.amount); for (.@i = 0; .@i < .amount; .@i++) { .mid = $@mobid[.@i]; setunitdata .mid,UMOB_LEVEL,1; setunitdata .mid,UMOB_MAXHP,10000; setunitdata .mid,UMOB_ATKMIN,10000; setunitdata .mid,UMOB_ATKMAX,21000; setunitdata .mid,UMOB_MATKMIN,10000; setunitdata .mid,UMOB_MATKMAX,21000; setunitdata .mid,UMOB_HIT,10000; setunitdata .mid,UMOB_ATKRANGE,5; setunitdata .mid,UMOB_ADELAY,100; } monster ("payon",172,215,"Mandragora",1020,.amount); //unitskilluseid .mid,19,2,1020; unitskillusepos .mid,19,3,172,215; //Fire Bolt } Quote Link to comment Share on other sites More sharing options...
0 n0tttt Posted December 22, 2018 Group: Members Topic Count: 4 Topics Per Day: 0.00 Content Count: 303 Reputation: 118 Joined: 12/10/16 Last Seen: 18 hours ago Share Posted December 22, 2018 Maybe because you're casting a targeted skill to the ground? payon,162,219,4 script Unit Master 101,{ .@amount = 1; for (.@i = 0; .@i < .@amount; .@i++) { monster ("payon",167,215,"Poporing",1031,.@amount); .@mid[.@i] = $@mobid[0]; setunitdata .@mid[.@i],UMOB_LEVEL,1; setunitdata .@mid[.@i],UMOB_MAXHP,10000; setunitdata .@mid[.@i],UMOB_ATKMIN,10000; setunitdata .@mid[.@i],UMOB_ATKMAX,21000; setunitdata .@mid[.@i],UMOB_MATKMIN,10000; setunitdata .@mid[.@i],UMOB_MATKMAX,21000; setunitdata .@mid[.@i],UMOB_HIT,10000; setunitdata .@mid[.@i],UMOB_ATKRANGE,5; setunitdata .@mid[.@i],UMOB_ADELAY,100; } monster ("payon",172,215,"Mandragora",1020,.@amount); .@target = $@mobid[0]; unitskilluseid .@mid[0],19,3,.@target; end; } 1 Quote Link to comment Share on other sites More sharing options...
0 luizragna Posted December 23, 2018 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 December 23, 2018 @n0tttt he conjured but the ability did not come out Quote Link to comment Share on other sites More sharing options...
0 luizragna Posted December 23, 2018 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 December 23, 2018 43 minutes ago, luizragna said: @n0tttt he conjured but the ability did not come out Solved, i added AI to mob. monster ("payon",167,215,"Poporing",1031,.amount,"",0,AI_ATTACK); Quote Link to comment Share on other sites More sharing options...
Question
luizragna
Hello guys!
I want make the poporing useskill in other mob.
In this case, he cast, but don't happen anything.
Link 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.