diff options
author | Playtester <Playtester@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-08-26 20:00:47 +0000 |
---|---|---|
committer | Playtester <Playtester@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-08-26 20:00:47 +0000 |
commit | 9d1cad441b41adf8b48b445b4ed00e1942e3cb3f (patch) | |
tree | 2bce4419f358027fba0e65abb2e0b6173fad3a70 /npc/merchants/socket_enchant.txt | |
parent | a0a93331e305e62a8913b93d3f56eea6ef51981d (diff) | |
download | hercules-9d1cad441b41adf8b48b445b4ed00e1942e3cb3f.tar.gz hercules-9d1cad441b41adf8b48b445b4ed00e1942e3cb3f.tar.bz2 hercules-9d1cad441b41adf8b48b445b4ed00e1942e3cb3f.tar.xz hercules-9d1cad441b41adf8b48b445b4ed00e1942e3cb3f.zip |
Added official effects to the Socket Enchant NPC
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@8492 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/merchants/socket_enchant.txt')
-rw-r--r-- | npc/merchants/socket_enchant.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/npc/merchants/socket_enchant.txt b/npc/merchants/socket_enchant.txt index 987ac67f1..ecf6835fc 100644 --- a/npc/merchants/socket_enchant.txt +++ b/npc/merchants/socket_enchant.txt @@ -547,6 +547,7 @@ function script addslot { set Zeny,Zeny-@addprice;
delitem @olditem,1;
if(@rateit<rand(1,100))goto L_Fail;
+ misceffect 83;
getitem @newitem,1;
mes "[Socket Enchant]";
@@ -571,6 +572,7 @@ function script addslot { close;
L_Fail:
+ misceffect 183;
mes "[Socket Enchant]";
mes "Sorry, but i could't upgrade it.";
close;
@@ -605,6 +607,7 @@ function script addslot2 { set Zeny,Zeny-@addprice;
delitem @olditem,1;
if(@rateit<rand(1,100))goto L_Fail;
+ misceffect 83;
getitem @newitem,1;
mes "[Socket Enchant]";
@@ -629,6 +632,7 @@ function script addslot2 { close;
L_Fail:
+ misceffect 183;
mes "[Socket Enchant]";
mes "Sorry, but i could't upgrade it.";
close;
|