Jump to content
  • 0

Euphy Hunting Mission [ERROR]


Question

Posted

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)

 

4 answers to this question

Recommended Posts

  • 0
Posted

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) {

 

  • 0
Posted
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

  • 0
Posted
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

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.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...