
Moved treasure spawn time to ev_agit_event.txt. Changes to headers and comments in various files. git-svn-id: https://svn.code.sf.net/p/rathena/svn/athena@233 54d463be-8e91-2dee-dedb-b68131a5f0ec
53 lines
1.8 KiB
Plaintext
53 lines
1.8 KiB
Plaintext
//===== eAthena Script =======================================
|
|
//= War of Emperium Kafras for N Guild Castles
|
|
//===== By: ==================================================
|
|
//= kobra_k88
|
|
//===== Current Version: =====================================
|
|
//= 1.0
|
|
//===== Compatible With: =====================================
|
|
//= eAthena 0.1+; RO Episode 4+
|
|
//===== Description: =========================================
|
|
//= Provides Kafra services for guild members of NGuild Castles.
|
|
//= Used in conjuction with function F_Kafra.
|
|
//===== Additional Comments: =================================
|
|
//= Based off existing guild scripts. Do not know if it is accurate.[kobra_k88]
|
|
//============================================================
|
|
|
|
|
|
// Castle 1 ===============================================
|
|
nguild_alde.gat,218,170,0 script Kafra Service#N01 117,{
|
|
callfunc "F_GKafra", "nguild_alde", "Al De Baran";
|
|
end;
|
|
OnRecvCastleN01:
|
|
if (GetCastleData("nguild_alde.gat",9) < 1) disablenpc "Kafra Service#N01";
|
|
end;
|
|
}
|
|
|
|
// Castle 2 ===============================================
|
|
//nguild_gef,96,173,0 script Kafra Service#N02 117,{
|
|
nguild_gef.gat,35,37,0 script Kafra Service#N02 117,{
|
|
callfunc "F_GKafra", "nguild_gef", "Geffen";
|
|
end;
|
|
OnRecvCastleN02:
|
|
if (GetCastleData("nguild_gef.gat",9) < 1) disablenpc "Kafra Service#N02";
|
|
end;
|
|
}
|
|
|
|
// Castle 3 ===============================================
|
|
nguild_pay.gat,128,58,3 script Kafra Service#N03 117,{
|
|
callfunc "F_GKafra", "nguild_pay", "Payon";
|
|
end;
|
|
OnRecvCastleN03:
|
|
if (GetCastleData("nguild_pay.gat",9) < 1) disablenpc "Kafra Service#N03";
|
|
end;
|
|
}
|
|
|
|
// Castle 4 ===============================================
|
|
nguild_prt.gat,96,173,0 script Kafra Service#N04 117,{
|
|
callfunc "F_GKafra", "nguild_prt", "Prontera";
|
|
end;
|
|
OnRecvCastleN04:
|
|
if (GetCastleData("nguild_prt.gat",9) < 1) disablenpc "Kafra Service#N04";
|
|
end;
|
|
}
|