Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 12/27/23 in Posts

  1. Find OnJoinEvent: add before sc_end SC_ALL; if(getcharid(1)) { dispbottom("Players with a party can't enter!"); end; } It should be like: OnJoinEvent: mes "[ Event Status ]"; mes "Event are as follows : "; next; switch(select( "Dice Event - "+ ((getvariableofnpc(.start,"Event_Dice") == 1) ? "^0000ffJoin Event":((getvariableofnpc(.start,"Event_Dice") == 2) ? "^0000ffEvent On-Going":"^ff0000Not Available"))+"^000000", "Last Man Standing - "+ ((getvariableofnpc(.start,"Event_LMS") == 1) ? "^0000ffJoin Event":((getvariableofnpc(.start,"Event_LMS") == 2) ? "^0000ffEvent On-Going":"^ff0000Not Available"))+"^000000", "Poring Catcher - "+ ((getvariableofnpc(.start,"Poring_Catcher") == 1) ? "^0000ffJoin Event":((getvariableofnpc(.start,"Poring_Catcher") == 2) ? "^0000ffEvent On-Going":"^ff0000Not Available"))+"^000000" )) { case 1: .@start = getvariableofnpc(.start,"Event_Dice"); .@map$ = "quiz_02"; .@x = 55; .@y = 87; break; case 2: .@start = getvariableofnpc(.start,"Event_LMS"); .@map$ = "06guild_01"; .@x = 0; .@y = 0; break; case 3: .@start = getvariableofnpc(.start,"Poring_Catcher"); .@map$ = "poring_w01"; .@x = 100; .@y = 100; break; } if ( !.@start ) { mes "Event is not available."; close; } else if ( .@start == 2 ) { mes "Event is on-going"; close; } if(getcharid(1)) { dispbottom("Players with a party can't enter!"); end; } sc_end SC_ALL; percentheal 100,100; warp .@map$, .@x, .@y; end;
    1 point
  2. https://github.com/rathena/rathena/pull/6486
    1 point
  3. U don't have to say sorry for asking for help. That's why we are here. Rynbef~
    1 point
  4. if(BaseLevel >= 90) { if(Zeny < .@price) { message(strcharinfo(0), "Healing costs " + callfunc("F_InsertComma",.@Price) + " Zeny."); end; } Zeny -= .@price; } specialeffect2 EF_HEAL2; percentheal 100,100;
    1 point
×
×
  • Create New...