- script BattlePoints -1,{
OnPCKillEvent:
getmapxy .@m$,.@x,.@y,0;
if (.@m$ == "pvp_y_2-2" || .@m$ == "guild_vs3" ){
set #BattlePoints,#BattlePoints+2;
dispbottom "[ Battle Points ] : +2 Points , Total Accumulated Points : [ "+#BattlePoints+" ] ";
end;
}
OnPCDieEvent:
getmapxy .@m$,.@x,.@y,0;
if (.@m$ == "pvp_y_2-2" || .@m$ == "guild_vs3" ){
set #BattlePoints,#BattlePoints-1;
dispbottom "[ Battle Points ] : -1 Points , Total Accumulated Points : [ "+#BattlePoints+" ] ";
end;
}
end;
}
pvp_y_2-2 mapflag loadevent
guild_vs3 mapflag loadevent
1@orcs mapflag loadevent
i got it from eathena, and you said it was yours, but im having an error on line one already...why?