Pandaaa
New member
hello, what is the problem with my script everytime i put my cursor to the Barricade it gives me error..
heres the script im using got from rathena
( I'm looking for a dummy/punching bag mob npc that will resurrect everytime it comes to 0 HP.. @ the same position )
heres the script im using got from rathena
( I'm looking for a dummy/punching bag mob npc that will resurrect everytime it comes to 0 HP.. @ the same position )
Code:
- script Punching Bag -1,{
OnInit:
setmapflag( "payon",mf_monster_noteleport );
OnDummyKill:
monster "prontera",187,209,"Punching Bag",1905,1,"Punching Bag::OnDummyKill";
end;
OnPCAttackEvent:
if ( !@test_punch ) end;
@dps_damage += @damage;
end;
}