Jump to content

Akbare

Members
  • Posts

    491
  • Joined

  • Last visited

  • Days Won

    4

Posts posted by Akbare

  1. Hi All,

     

    Currently using latest PRE-RE git and planning to make a low rate server with all Official NPC enabled 

    E.g : First Character Creation ( All NPC should be enabled in Training Ground ) / Office Job Change NPC for 1st 2nd and trans.

     

    Thank you in advance.

     

    edit if you want  /no1  combine from eAthena

  2. if ( Hp < ( Hp * 3 / 10 ) ) {
        percentheal 100,100;
    }
    end;
    

     

    not working sir

    HP < 30% npc can heal player

    but

    HP >30% npc can't heal

    prontera,166,66,4	script	Free Healer	113,{
    
    if ( Hp < ( Hp * 3 / 10 ) ) {
        percentheal 100,100;
    	mes "THis Heal power for you";
    	close;
    }
    mes "can't heal";
    close;
    }
    
  3. prontera,166,66,4	script	Free Healer	113,{
    
    if (Hp = MaxHP*0.3) {
    		dispbottom "free healer";
    		percentheal 30,30;
    		skilleffect 28,0;
    	} else {
    	mes "Maaf kamu tidak bisa menggunakan layanan ini";
    	close;
    }
    

    Not sure if that's right, but there you go. (not really sure if 0.3 will work or not hahaha).

     

    other special variables: https://rathena.org/board/topic/72019-where-i-can-find-default-variables-of-game/?p=143798

     

     

    hahhaa thanks for help

    but there is error

    if (Hp = MaxHP*0.3) {

    i can try other variables, maybe someone can help me

  4. Sorry, Akbare,

    I'm not sure either my git is the latest one, since I'm using ready-to-play server as provided by VPS provider (with RO Setup package).

     

    try to ask the Creator , you can try installing with latest source

  5. my idea  /ok

    under 30% HP npc can use heal

    upper 30% HP npc can't heal

     

    this my script

     

    my problem :  he did heal continuous /hum

    prontera,166,66,4	script	Free Healer	113,{
    if (MaxHprate < 30)
    		dispbottom "free healer";
    		percentheal 30,30;
    		skilleffect 28,0;
    	} else {
    	mes "Maaf kamu tidak bisa menggunakan layanan ini";
    	close;
    }
    

    thanks for advance  /ok

  6. - Tao Gunka (4302)
    Def -40 Mdef -40
    Max HP 100% for all rebirth job
    Max HP 150% for all Extended job
     
    this my script and not work :
     
    i try for ranger only, why not work ??
    { if(BaseJob==Job_Ranger) {bonus bMaxHPrate,100;} bonus bMdef,-40; bonus bDef,-40; },{},{}
    
    BaseJob==Job_Ranger
    BaseClass==Job_Ranger
    

    and same not work

     

    and not work for ranger job

     

    maybe someone can help me

    btw how to create for all rebirth job ??
     
    thanks for advance
  7. Hello,

     

    I created a mob in mob_avail.txt that simulates a Knight riding a Peco Peco (was looking for the movement)

    50000,7,1,23,8,0,0,40,100,0,32,0
    

    But when I use that ID on the NPC, it won't ride anything (though has the same outfit).

     

    How do I make this NPC to ride that Peco Peco?

     

     
    npc and sprite job is not same
×
×
  • Create New...