hadie Posted May 14, 2017 Group: Members Topic Count: 30 Topics Per Day: 0.01 Content Count: 86 Reputation: 1 Joined: 03/11/12 Last Seen: January 11 Share Posted May 14, 2017 Good Morning (Malaysia morning right now) rAthena i wonder how possible to add emotion popup like this (see attach picture) on my npc..? thanks to all of you in advance Quote Link to comment Share on other sites More sharing options...
0 Cyro Posted May 14, 2017 Group: Members Topic Count: 9 Topics Per Day: 0.00 Content Count: 1138 Reputation: 290 Joined: 04/29/13 Last Seen: July 20, 2024 Share Posted May 14, 2017 This is not emotion it is npc icon triggered using showevent showevent <icon>{,<mark color>{,<char_id>}} Show an emotion on top of a NPC, and optionally, a colored mark in the mini-map like "viewpoint". This is used to indicate that a NPC has a quest or an event to a certain player. Available Icons: Remove Icon : QTYPE_NONE ! Quest Icon : QTYPE_QUEST ? Quest Icon : QTYPE_QUEST2 ! Job Icon : QTYPE_JOB ? Job Icon : QTYPE_JOB2 ! Event Icon : QTYPE_EVENT ? Event Icon : QTYPE_EVENT2 Warg : QTYPE_WARG Warg Face : QTYPE_WARG2 (Only for packetver >= 20120410) Mark Color: 0 - No Mark 1 - Yellow Mark 2 - Green Mark 3 - Purple Mark If you want to use emotion permanently on npc, use timer or freeloop Quote Link to comment Share on other sites More sharing options...
0 Deleted User Posted May 14, 2017 Group: Members Topic Count: 22 Topics Per Day: 0.00 Content Count: 235 Reputation: 55 Joined: 12/02/11 Last Seen: February 26, 2021 Share Posted May 14, 2017 29 minutes ago, hadie said: Good Morning (Malaysia morning right now) rAthena i wonder how possible to add emotion popup like this (see attach picture) on my npc..? thanks to all of you in advance I would suggest read docs at rAthena. Quote *showevent <icon>{,<mark color>{,<char_id>}} Show an emotion on top of a NPC, and optionally, a colored mark in the mini-map like "viewpoint". This is used to indicate that a NPC has a quest or an event to a certain player. Available Icons: Remove Icon : QTYPE_NONE ! Quest Icon : QTYPE_QUEST ? Quest Icon : QTYPE_QUEST2 ! Job Icon : QTYPE_JOB ? Job Icon : QTYPE_JOB2 ! Event Icon : QTYPE_EVENT ? Event Icon : QTYPE_EVENT2 Warg : QTYPE_WARG Warg Face : QTYPE_WARG2 (Only for packetver >= 20120410) Mark Color: 0 - No Mark 1 - Yellow Mark 2 - Green Mark 3 - Purple Mark Quote Link to comment Share on other sites More sharing options...
0 hadie Posted May 14, 2017 Group: Members Topic Count: 30 Topics Per Day: 0.01 Content Count: 86 Reputation: 1 Joined: 03/11/12 Last Seen: January 11 Author Share Posted May 14, 2017 (edited) 31 minutes ago, Kaze said: I would suggest read docs at rAthena. Thanks @Kaze but can you give me specific script? for example showevent QTYPE_JOB,0} like this? what i want to put on char_id? Edited May 14, 2017 by hadie Quote Link to comment Share on other sites More sharing options...
0 hadie Posted May 14, 2017 Group: Members Topic Count: 30 Topics Per Day: 0.01 Content Count: 86 Reputation: 1 Joined: 03/11/12 Last Seen: January 11 Author Share Posted May 14, 2017 44 minutes ago, Cyro said: This is not emotion it is npc icon triggered using showevent showevent <icon>{,<mark color>{,<char_id>}} Show an emotion on top of a NPC, and optionally, a colored mark in the mini-map like "viewpoint". This is used to indicate that a NPC has a quest or an event to a certain player. Available Icons: Remove Icon : QTYPE_NONE ! Quest Icon : QTYPE_QUEST ? Quest Icon : QTYPE_QUEST2 ! Job Icon : QTYPE_JOB ? Job Icon : QTYPE_JOB2 ! Event Icon : QTYPE_EVENT ? Event Icon : QTYPE_EVENT2 Warg : QTYPE_WARG Warg Face : QTYPE_WARG2 (Only for packetver >= 20120410) Mark Color: 0 - No Mark 1 - Yellow Mark 2 - Green Mark 3 - Purple Mark If you want to use emotion permanently on npc, use timer or freeloop thanks @Cyro Quote Link to comment Share on other sites More sharing options...
0 hadie Posted May 14, 2017 Group: Members Topic Count: 30 Topics Per Day: 0.01 Content Count: 86 Reputation: 1 Joined: 03/11/12 Last Seen: January 11 Author Share Posted May 14, 2017 45 minutes ago, Cyro said: This is not emotion it is npc icon triggered using showevent showevent <icon>{,<mark color>{,<char_id>}} Show an emotion on top of a NPC, and optionally, a colored mark in the mini-map like "viewpoint". This is used to indicate that a NPC has a quest or an event to a certain player. Available Icons: Remove Icon : QTYPE_NONE ! Quest Icon : QTYPE_QUEST ? Quest Icon : QTYPE_QUEST2 ! Job Icon : QTYPE_JOB ? Job Icon : QTYPE_JOB2 ! Event Icon : QTYPE_EVENT ? Event Icon : QTYPE_EVENT2 Warg : QTYPE_WARG Warg Face : QTYPE_WARG2 (Only for packetver >= 20120410) Mark Color: 0 - No Mark 1 - Yellow Mark 2 - Green Mark 3 - Purple Mark If you want to use emotion permanently on npc, use timer or freeloop can you give me example? Quote Link to comment Share on other sites More sharing options...
0 Cyro Posted May 14, 2017 Group: Members Topic Count: 9 Topics Per Day: 0.00 Content Count: 1138 Reputation: 290 Joined: 04/29/13 Last Seen: July 20, 2024 Share Posted May 14, 2017 OnPCLoadMapEvent: { showevent 4,2; } This one shows event icon with green colour Quote Link to comment Share on other sites More sharing options...
0 hadie Posted May 14, 2017 Group: Members Topic Count: 30 Topics Per Day: 0.01 Content Count: 86 Reputation: 1 Joined: 03/11/12 Last Seen: January 11 Author Share Posted May 14, 2017 i try like this but not work izlude,100,100,4 script Test 102,{ mes("[Test]"); mes("Hello World."); close(); OnInit: showevent(QTYPE_QUEST, 0); end; } Quote Link to comment Share on other sites More sharing options...
0 hadie Posted May 14, 2017 Group: Members Topic Count: 30 Topics Per Day: 0.01 Content Count: 86 Reputation: 1 Joined: 03/11/12 Last Seen: January 11 Author Share Posted May 14, 2017 1 hour ago, Cyro said: OnPCLoadMapEvent: { showevent 4,2; } This one shows event icon with green colour this work for mark on mini map but npc not showing emotion quest popup Quote Link to comment Share on other sites More sharing options...
0 maken06 Posted February 25, 2018 Group: Members Topic Count: 28 Topics Per Day: 0.01 Content Count: 234 Reputation: 115 Joined: 02/24/15 Last Seen: March 20, 2024 Share Posted February 25, 2018 @Cyro Are there more types of icons? On 13/5/2017 at 9:46 PM, Cyro said: This is not emotion it is npc icon triggered using showevent showevent <icon>{,<mark color>{,<char_id>}} Show an emotion on top of a NPC, and optionally, a colored mark in the mini-map like "viewpoint". This is used to indicate that a NPC has a quest or an event to a certain player. Available Icons: Remove Icon : QTYPE_NONE ! Quest Icon : QTYPE_QUEST ? Quest Icon : QTYPE_QUEST2 ! Job Icon : QTYPE_JOB ? Job Icon : QTYPE_JOB2 ! Event Icon : QTYPE_EVENT ? Event Icon : QTYPE_EVENT2 Warg : QTYPE_WARG Warg Face : QTYPE_WARG2 (Only for packetver >= 20120410) Mark Color: 0 - No Mark 1 - Yellow Mark 2 - Green Mark 3 - Purple Mark If you want to use emotion permanently on npc, use timer or freeloop Quote Link to comment Share on other sites More sharing options...
0 hanxian123 Posted September 1, 2018 Group: Members Topic Count: 1 Topics Per Day: 0.00 Content Count: 4 Reputation: 0 Joined: 04/12/18 Last Seen: October 8, 2018 Share Posted September 1, 2018 showevent QTYPE_QUEST{,2{,char_id??}} what should i put in char_id ? can i know what is this ? Quote Link to comment Share on other sites More sharing options...
Question
hadie
Good Morning (Malaysia morning right now) rAthena
i wonder how possible to add emotion popup like this (see attach picture)
on my npc..?
thanks to all of you in advance
Link to comment
Share on other sites
10 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.