Jump to content
  • 0

ShowEvent using Euphy's Job Master


Medusa

Question


  • Group:  Members
  • Topic Count:  6
  • Topics Per Day:  0.00
  • Content Count:  9
  • Reputation:   0
  • Joined:  07/17/14
  • Last Seen:  

I would like to add a ShowEvent for all novis to show them the Job Master. In this example I use Euphy's.

Im a bit confused about the usage of the command. How would i have to make it so the ! appears only to novices? And maybe also only to the first char per account? Also, where would I have to integrate it in the script?

I hope anyone can give me an example here.

Link to comment
Share on other sites

3 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  1
  • Topics Per Day:  0.00
  • Content Count:  34
  • Reputation:   1
  • Joined:  12/17/11
  • Last Seen:  

Do you actually mean you want "Job" icon hover the NPC head and only visible to novice?

I believe there is no such control. You might need to see this: http://rathena.org/wiki/Showevent

Or, code should looks like this: (These line are only guide or pseudo-code)

OnInit:
	if (Class > Novice) {
		... // Nothing happen?
	} else
		ShowEvent 1,1; // Show the icon to Novice
	close;
end;

I'm not sure how to code it,

Edited by Aoi Tokichiro
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  6
  • Topics Per Day:  0.00
  • Content Count:  9
  • Reputation:   0
  • Joined:  07/17/14
  • Last Seen:  

this would still require the player to click the npc to make the showevent appear, or am i wrong?

shouldn't it be an OnPCLoadMapEvent?

also im not sure if the showEvent disappears afterwards

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  1
  • Topics Per Day:  0.00
  • Content Count:  34
  • Reputation:   1
  • Joined:  12/17/11
  • Last Seen:  

OnInit doesn't require the player to click on it but give it a try on both OnInit: and OnPCLoadMapEvent.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...