powkda Posted January 11 Share Posted January 11 How to block enemy guilds from entering the castle already conquered by other guilds outside of war time? Can someone help me? thank you so much Quote Link to comment Share on other sites More sharing options...
0 Emistry Posted January 11 Share Posted January 11 (edited) - script Sample -1,{ OnInit: .map$ = "prtg_cas01"; setmapflag(.map$, MF_LOADEVENT); end; OnPCLoadMapEvent: if (.map$ == strcharinfo(3) && !(agitcheck() || agitcheck2() || agitcheck3()) { [email protected]_guild_id = getcastledata(.map$, CD_GUILD_ID); if ([email protected]_guild_id && getcharid(2) != [email protected]_guild_id) { mes "You aren't allow to enter this area."; close2; warp "SavePoint", 0, 0; } } end; } Edited January 11 by Emistry 1 Quote Link to comment Share on other sites More sharing options...
0 powkda Posted January 11 Author Share Posted January 11 1 hour ago, Emistry said: - script Sample -1,{ OnInit: .map$ = "prtg_cas01"; setmapflag(.map$, MF_LOADEVENT); end; OnPCLoadMapEvent: if (.map$ == strcharinfo(3) && !(agitcheck() || agitcheck2() || agitcheck3)) { [email protected]_guild_id = getcastledata(.map$, CD_GUILD_ID); if ([email protected]_guild_id && getcharid(2) != [email protected]_guild_id) { mes "You aren't allow to enter this area."; close2; warp "SavePoint", 0, 0; } } end; } Thank you so much for helping me I got this error here need '(' 639 : 640 : setmapflag(.map$, MF_LOADEVENT); 641 : end; 642 : 643 : OnPCLoadMapEvent: * 644 : if (.map$ == strcharinfo(3) && !(agitcheck() || agitcheck2() || agitcheck3')') { 645 : .@castle_guild_id = getcastledata(.map$, CD_GUILD_ID); 646 : if (.@castle_guild_id && getcharid(2) != .@castle_guild_id) { 647 : mes "You aren't allow to enter this area."; 648 : close2; 649 : warp "SavePoint", 0, 0; Quote Link to comment Share on other sites More sharing options...
0 Emistry Posted January 11 Share Posted January 11 if (.map$ == strcharinfo(3) && !(agitcheck() || agitcheck2() || agitcheck3()) { 1 Quote Link to comment Share on other sites More sharing options...
0 Rynbef Posted January 13 Share Posted January 13 On 1/11/2022 at 3:40 PM, Emistry said: if (.map$ == strcharinfo(3) && !(agitcheck() || agitcheck2() || agitcheck3()) { @EmistryU missed a ) to close the if statement if (.map$ == strcharinfo(3) && !(agitcheck() || agitcheck2() || agitcheck3())) { Rynbef~ 1 Quote Link to comment Share on other sites More sharing options...
0 powkda Posted January 15 Author Share Posted January 15 On 1/11/2022 at 10:40 PM, Emistry said: if (.map$ == strcharinfo(3) && !(agitcheck() || agitcheck2() || agitcheck3()) { On 1/14/2022 at 6:08 AM, Rynbef said: @EmistryU missed a ) to close the if statement if (.map$ == strcharinfo(3) && !(agitcheck() || agitcheck2() || agitcheck3())) { Rynbef~ There was no more error when loading, but it is not preventing the player of the enemy guild from staying inside the castle outside of war time, when this message enters the log: Can you help me with this error I got? Quote Link to comment Share on other sites More sharing options...
0 Emistry Posted March 5 Share Posted March 5 your rathena is outdated since it probably doesn't have the newer script_constants.hpp that declare the variables and its values. /* castle data flags */ export_constant(CD_NONE); export_constant(CD_GUILD_ID); export_constant(CD_CURRENT_ECONOMY); export_constant(CD_CURRENT_DEFENSE); export_constant(CD_INVESTED_ECONOMY); export_constant(CD_INVESTED_DEFENSE); export_constant(CD_NEXT_TIME); export_constant(CD_PAY_TIME); export_constant(CD_CREATE_TIME); export_constant(CD_ENABLED_KAFRA); for( int i = CD_ENABLED_GUARDIAN00, j = 0; i < CD_MAX; i++, j++ ){ char constant[32]; sprintf( constant, "CD_ENABLED_GUARDIAN%02d", j ); script_set_constant( constant, i, false, false ); } export_constant(CD_MAX); Quote Link to comment Share on other sites More sharing options...
How to block enemy guilds from entering the castle already conquered by other guilds outside of war time?
Can someone help me? thank you so much
Link to comment
Share on other sites