Jump to content
  • 0

Euphy Hunting Mission [ERROR]


khoi

Question


  • Group:  Members
  • Topic Count:  3
  • Topics Per Day:  0.00
  • Content Count:  6
  • Reputation:   0
  • Joined:  02/21/17
  • Last Seen:  

https://raw.githubusercontent.com/rathena/rathena/master/npc/custom/quests/hunting_missions.txt

hello sir,Im using euphy hunting Missions.But I received an error.When  start kill monster below error showed.Hope you guys can help me solve this problem.Thank You.

[Error]: buildin_getvar: 'Hp' is a parameter - please use readparam instead
[Debug]: Data: param name='Hp' type=5
[Debug]: Source (NPC): Hunting Missions at prontera (204,235)

 

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

  • Group:  Members
  • Topic Count:  0
  • Topics Per Day:  0
  • Content Count:  21
  • Reputation:   0
  • Joined:  02/16/12
  • Last Seen:  

some problem

 

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  8
  • Topics Per Day:  0.00
  • Content Count:  1137
  • Reputation:   290
  • Joined:  04/29/13
  • Last Seen:  

find this in your script

set .@Mission_Count, getvar(#Mission_Count, $@partymembercid[.@i]);
				set .@Mission0, getvar(Mission0, $@partymembercid[.@i]);
				set .@HP, getvar(HP, $@partymembercid[.@i]);  // this HP causing error

				if (.@Mission_Count && .@Mission0 && .@HP > 0) {
				

replace with this 

set .@Mission_Count, getvar(#Mission_Count, $@partymembercid[.@i]);
				set .@Mission0, getvar(Mission0, $@partymembercid[.@i]);
				set .@HP, getvar(HPr, $@partymembercid[.@i]);

				if (.@Mission_Count && .@Mission0 && .@HPr > 0) {

 

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  0
  • Topics Per Day:  0
  • Content Count:  21
  • Reputation:   0
  • Joined:  02/16/12
  • Last Seen:  

On 15.03.2017 at 6:30 PM, khoi said:

https://raw.githubusercontent.com/rathena/rathena/master/npc/custom/quests/hunting_missions.txt

hello sir,Im using euphy hunting Missions.But I received an error.When  start kill monster below error showed.Hope you guys can help me solve this problem.Thank You.


[Error]: buildin_getvar: 'Hp' is a parameter - please use readparam instead
[Debug]: Data: param name='Hp' type=5
[Debug]: Source (NPC): Hunting Missions at prontera (204,235)

 

change .@HP to .@HP1

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  0
  • Topics Per Day:  0
  • Content Count:  21
  • Reputation:   0
  • Joined:  02/16/12
  • Last Seen:  

set .@Mission_Count, getvar(#Mission_Count, $@partymembercid[.@i]);
				set .@Mission0, getvar(Mission0, $@partymembercid[.@i]);
				set .@HP1, getvar(HP, $@partymembercid[.@i]);

				if (.@Mission_Count && .@Mission0 && .@HP1 > 0) {

i made it like this  working

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...