Jump to content

belphegor

Members
  • Posts

    23
  • Joined

  • Last visited

Community Answers

  1. belphegor's post in HP show was marked as the answer   
    conf/battle/monster.conf
     
    // Display some mob info next to their name? (add as needed)
    // (does not works on guardian or Emperium)
    // 1: Display mob HP (Hp/MaxHp format)
    // 2: Display mob HP (Percent of full life format)
    // 4: Display mob's level
    show_mob_info: 0
  2. belphegor's post in Requesting a guide npc was marked as the answer   
    Well, say you put.
     
    if($walking==1) end;
     
    It'll still stop walking. Why not just make the guide warp to the selected location with the player, some 
     
    npctalk "We're here!";
    sleep 3000;
    npctalk "I better be going now.";
    movenpc strnpcinfo(0)+", $dx, $dy;
     
    Something like that.
     
    EDIT:
     
    Unless you put in something like
     
    if($walking==1)
    {
       npctalk "I'm busy.";
       sleep 3000;
       npcspeed 1;
       npcwalkto $x,$y;
    }
     
    And in the main script you put in something like
     
    mes "Pick a location.";
    switch(select("Blacksmith:Rental"))
    {
       case 1:
       {
          mes "Alright.";
          close2;
          set $x, 9999; // real X coords here.
          set $y, 9999; // real Y coords here.
          set $walking,1;
          npcspeed 1;
          npcwalkto $x,$y;
       }
       case 2:
       {
        second location here.
       }
     
    Still just a concept though. I'll try this out when i have the time. Well, hopefully someone's taking the time to make one. 
×
×
  • Create New...