Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Corrected KVM Logistic Officer item ID #2527

Merged
merged 1 commit into from Sep 22, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 5 additions & 5 deletions npc/battleground/kvm/kvm_item_pay.txt
Expand Up @@ -37,15 +37,15 @@
//=========================================================================

bat_room,151,144,3 script KVM Logistic Officer#a 4_M_JOB_KNIGHT2,{
if (countitem(War_Badge)) {
.@pointstoadd = countitem(War_Badge);
delitem 7773,.@pointstoadd;
if (countitem(KVM_Badge)) {
.@pointstoadd = countitem(KVM_Badge);
delitem KVM_Badge,.@pointstoadd;
kvm_point += .@pointstoadd;
mes("[Logistics]");
mesf("Are those %ss I see?", getitemname(7773));
mesf("Are those %ss I see?", getitemname(KVM_Badge));
mes("We no longer accept that currency,\r"
"but I can exchange those for you.");
mesf("So you have %d %ss?", .@pointstoadd, getitemname(7773));
mesf("So you have %d %ss?", .@pointstoadd, getitemname(KVM_Badge));
mesf("Alright, all set, you now have ^580080%d^000000 KVM Points.", kvm_point);
next;
}
Expand Down
4 changes: 2 additions & 2 deletions npc/custom/battleground/bg_kvm01.txt
Expand Up @@ -329,7 +329,7 @@ bat_c01,51,130,5 script Guillaume Vintenar::VintenarKvM01a 4_M_KY_HEAD,{
}

setquest 6025;
getitem 7773, .@reward;
getitem KVM_Badge, .@reward;
bg_leave;
warp "bat_room",155,150;
end;
Expand Down Expand Up @@ -365,7 +365,7 @@ bat_c01,148,53,1 script Croix Vintenar::VintenarKvM01b 4_M_CRU_HEAD,{
}

setquest 6025;
getitem 7773, .@reward;
getitem KVM_Badge, .@reward;
bg_leave;
warp "bat_room",155,150;
end;
Expand Down
4 changes: 2 additions & 2 deletions npc/custom/battleground/bg_kvm02.txt
Expand Up @@ -329,7 +329,7 @@ bat_c02,51,130,5 script Guillaume Vintenar::VintenarKvM02a 4_M_KY_HEAD,{
}

setquest 6025;
getitem 7773, .@reward;
getitem KVM_Badge, .@reward;
bg_leave;
warp "bat_room",155,150;
end;
Expand Down Expand Up @@ -365,7 +365,7 @@ bat_c02,148,53,1 script Croix Vintenar::VintenarKvM02b 4_M_CRU_HEAD,{
}

setquest 6025;
getitem 7773, .@reward;
getitem KVM_Badge, .@reward;
bg_leave;
warp "bat_room",155,150;
end;
Expand Down
4 changes: 2 additions & 2 deletions npc/custom/battleground/bg_kvm03.txt
Expand Up @@ -329,7 +329,7 @@ bat_c03,51,130,5 script Guillaume Vintenar::VintenarKvM03a 4_M_KY_HEAD,{
}

setquest 6025;
getitem 7773, .@reward;
getitem KVM_Badge, .@reward;
bg_leave;
warp "bat_room",155,150;
end;
Expand Down Expand Up @@ -365,7 +365,7 @@ bat_c03,148,53,1 script Croix Vintenar::VintenarKvM03b 4_M_CRU_HEAD,{
}

setquest 6025;
getitem 7773, .@reward;
getitem KVM_Badge, .@reward;
bg_leave;
warp "bat_room",155,150;
end;
Expand Down