[1] | 1 | //===== eAthena Script ======================================= |
---|
| 2 | //= War of Emperium Second Edition |
---|
| 3 | //===== By: ================================================== |
---|
| 4 | //= L0ne_W0lf |
---|
| 5 | //===== Current Version: ===================================== |
---|
| 6 | //= 1.0 |
---|
| 7 | //===== Compatible With: ===================================== |
---|
| 8 | //= eAthena SVN |
---|
| 9 | //===== Description: ========================================= |
---|
| 10 | //= WoE SE Guild Flags in Juno and Rachel |
---|
| 11 | //===== Additional Comments: ================================= |
---|
| 12 | //= 1.0 First Version [L0ne_W0lf] |
---|
| 13 | //============================================================ |
---|
| 14 | |
---|
| 15 | // Juno |
---|
| 16 | yuno,109,167,5 script Himinn 722,{ |
---|
| 17 | end; |
---|
| 18 | |
---|
| 19 | OnRecvCastlesc01: |
---|
| 20 | FlagEmblem GetCastleData("schg_cas01",1); |
---|
| 21 | end; |
---|
| 22 | } |
---|
| 23 | |
---|
| 24 | yuno,110,171,5 script Andlangr 722,{ |
---|
| 25 | end; |
---|
| 26 | |
---|
| 27 | OnRecvCastlesc02: |
---|
| 28 | FlagEmblem GetCastleData("schg_cas02",1); |
---|
| 29 | end; |
---|
| 30 | } |
---|
| 31 | |
---|
| 32 | yuno,111,175,5 script Viblainn 722,{ |
---|
| 33 | end; |
---|
| 34 | |
---|
| 35 | OnRecvCastlesc03: |
---|
| 36 | FlagEmblem GetCastleData("schg_cas03",1); |
---|
| 37 | end; |
---|
| 38 | } |
---|
| 39 | |
---|
| 40 | yuno,112,179,5 script Hljod 722,{ |
---|
| 41 | end; |
---|
| 42 | |
---|
| 43 | OnRecvCastlesc04: |
---|
| 44 | FlagEmblem GetCastleData("schg_cas04",1); |
---|
| 45 | end; |
---|
| 46 | } |
---|
| 47 | |
---|
| 48 | yuno,114,183,5 script Skidbladnir 722,{ |
---|
| 49 | end; |
---|
| 50 | |
---|
| 51 | OnRecvCastlesc05: |
---|
| 52 | FlagEmblem GetCastleData("schg_cas05",1); |
---|
| 53 | end; |
---|
| 54 | } |
---|
| 55 | |
---|
| 56 | // Arunafeltz |
---|
| 57 | rachel,124,120,3 script Mardol 722,{ |
---|
| 58 | end; |
---|
| 59 | |
---|
| 60 | OnRecvCastlear01: |
---|
| 61 | FlagEmblem GetCastleData("arug_cas01",1); |
---|
| 62 | end; |
---|
| 63 | } |
---|
| 64 | |
---|
| 65 | rachel,136,120,5 script Cyr 722,{ |
---|
| 66 | end; |
---|
| 67 | |
---|
| 68 | OnRecvCastlear02: |
---|
| 69 | FlagEmblem GetCastleData("arug_cas02",1); |
---|
| 70 | end; |
---|
| 71 | } |
---|
| 72 | |
---|
| 73 | rachel,138,126,6 script Horn 722,{ |
---|
| 74 | end; |
---|
| 75 | |
---|
| 76 | OnRecvCastlear03: |
---|
| 77 | FlagEmblem GetCastleData("arug_cas03",1); |
---|
| 78 | end; |
---|
| 79 | } |
---|
| 80 | |
---|
| 81 | rachel,135,131,7 script Gefn 722,{ |
---|
| 82 | end; |
---|
| 83 | |
---|
| 84 | OnRecvCastlear04: |
---|
| 85 | FlagEmblem GetCastleData("arug_cas04",1); |
---|
| 86 | end; |
---|
| 87 | } |
---|
| 88 | |
---|
| 89 | rachel,124,130,1 script Banadis 722,{ |
---|
| 90 | end; |
---|
| 91 | |
---|
| 92 | OnRecvCastlear05: |
---|
| 93 | FlagEmblem GetCastleData("arug_cas05",1); |
---|
| 94 | end; |
---|
| 95 | } |
---|