Fixed reward of gunslinger job quest
git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@9142 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
parent
bcea3d3fec
commit
47b55b964b
@ -33,6 +33,8 @@ KarLaeda
|
|||||||
|
|
||||||
Date Added
|
Date Added
|
||||||
======
|
======
|
||||||
|
11/05
|
||||||
|
* Fixed reward of gunslinger job quest [Playtester]
|
||||||
11/04
|
11/04
|
||||||
* Many small fixes - tabs, parenthesis [KarLaeda]
|
* Many small fixes - tabs, parenthesis [KarLaeda]
|
||||||
* Fixed Weight check in 1st class quests [Lupus]
|
* Fixed Weight check in 1st class quests [Lupus]
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
//= DON'T REMOVE THIS! (by request of him, he provided all
|
//= DON'T REMOVE THIS! (by request of him, he provided all
|
||||||
//= the info regarding the quests and shops.)
|
//= the info regarding the quests and shops.)
|
||||||
//===== Current Version: =====================================
|
//===== Current Version: =====================================
|
||||||
//= 1.7b
|
//= 1.8
|
||||||
//===== Compatible With: =====================================
|
//===== Compatible With: =====================================
|
||||||
//= eAthena SVN
|
//= eAthena SVN
|
||||||
//===== Description: =========================================
|
//===== Description: =========================================
|
||||||
@ -22,6 +22,7 @@
|
|||||||
//= 1.7 Now uses only ONE variable GUNS_Q [Lupus]
|
//= 1.7 Now uses only ONE variable GUNS_Q [Lupus]
|
||||||
//= 1.7a Grammar fixes, few spelling fixes, etc [CBMaster]
|
//= 1.7a Grammar fixes, few spelling fixes, etc [CBMaster]
|
||||||
//= 1.7b Parenthesis fixes [KarLaeda]
|
//= 1.7b Parenthesis fixes [KarLaeda]
|
||||||
|
//= 1.8 Fixed the reward you can get [Playtester]
|
||||||
//============================================================
|
//============================================================
|
||||||
|
|
||||||
que_ng.gat,152,167,3 script Gunslinger Jobchanger 901,{
|
que_ng.gat,152,167,3 script Gunslinger Jobchanger 901,{
|
||||||
@ -56,7 +57,11 @@ que_ng.gat,152,167,3 script Gunslinger Jobchanger 901,{
|
|||||||
next;
|
next;
|
||||||
mes @npcname$;
|
mes @npcname$;
|
||||||
mes "Oh, I forgot, here's a token of my appreciation";
|
mes "Oh, I forgot, here's a token of my appreciation";
|
||||||
getitem 13150,1;
|
if (rand(1,3) < 3) {
|
||||||
|
getitem 13100,1;
|
||||||
|
} else {
|
||||||
|
getitem 13150,1;
|
||||||
|
}
|
||||||
close2;
|
close2;
|
||||||
set @npcname$,"";
|
set @npcname$,"";
|
||||||
end;
|
end;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user