Jump to content

Kaito Kid

Members
  • Posts

    102
  • Joined

  • Last visited

Posts posted by Kaito Kid

  1. Dunno how to set @noks

    already set

    // Time in milliseconds to actitave protection against Kill Steal

    // Set to 0 to disable it.

    // If this is activated and a player is using @noks, damage from others players (KS) not in the party

    // will be reduced to 0.

    ksprotection: 1

    but my player still can steal other player's monster's

  2. skill.c: In function âskill_attackâ:

    skill.c:2561: error: ânumâ undeclared (first use in this function)

    skill.c:2561: error: (Each undeclared identifier is reported only once

    skill.c:2561: error: for each function it appears in.)

    skill.c:2561: error: âskillidâ undeclared (first use in this function)

    skill.c:2561: error: âskilllvâ undeclared (first use in this function)

    skill.c:2561: error: â_damageâ undeclared (first use in this function)

    got error on this code

       int i=0,num=abs(skill_get_num(skillid,skilllv)),_damage=0;
    

    Using Latest SVN......

  3. since this is a Taekwon Mission room .... i suggest you better limit the monster summoning by auto check for which monster for their mission...and how many left....

    TK_MISSION_ID
    TK_MISSION_COUNT
    

    How?? or i just change @mon and @jum with that two codes?

  4. Just read item.db on rathena doc on your server /hum

    It's default added by rathena

    Loc: Equipment's placement. Values are:

    2^12 4096 = Costume Low Headgear

    2^11 2048 = Costume Mid Headgear

    2^10 1024 = Costume Top Headgear

    2^8 256 = Upper Headgear

    2^9 512 = Middle Headgear

    2^0 001 = Lower Headgear

    2^4 016 = Armor

    2^1 002 = Weapon

    2^5 032 = Shield

    2^2 004 = Garment

    2^6 064 = Footgear

    2^3 008 = Accessory 1

    2^7 128 = Accessory 2

    • Upvote 1
  5. Inspired by anieruru (but his script not working on latest rathena)

    So i just make a simple npc which it can spawn monster

    Player's just input the monster id and how much he need.

    don't worries about drops. already set mapflag into noloot

    here's version 1 (it's really simple... if you can modif it i would be happy) ^_^

    Taekwon.txt V 1.0 (input monster id)

    Taekwon.txt V 1.1 (read from taekwon mission only)

  6. Okay, I just found it today....

    My server have maks lv 255

    and novice also can going into 255 lv

    i am using default jobmaster from rathena

    https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/npc/custom/jobmaster.txt

    and if my player have a novice at 255 then he change it into baby novice job

    They will have lv 255 stats point (not reseted/have more than 4000 SP extra)

    Then i do this:

    Search this code

    if (.@i==4001 || .@i==4023) resetlvl(1);
    
      specialeffect2 338; specialeffect2 432;
    

    Then insert script reset command between it

    if (.@i==4001 || .@i==4023) resetlvl(1);
    atcommand "@reset";
      specialeffect2 338; specialeffect2 432;
    

    I hope someone or rathena can fix it.... thanks /ok

    Sorry for my english /panic

  7. Help please i got few question:

    1. how to make this refine read costumes equipment.

    I was trying to add getequipname(10)-getequipname(13). but it getting errors

    set @typr,0;
    
    next;
    mes "[black Devilz]";
    mes "Your Current Event Point(s):^FF0000 "+#EVENTPOINT+"^000000";
    next;
    
    set @typr,select(getequipisequiped(1)==0?"[ No Item Equipped ]":getequipname(1),getequipisequiped(2)==0?"[ No Item Equipped ]":getequipname(2),getequipisequiped(3)==0?"[ No Item Equipped ]":getequipname(3),getequipisequiped(4)==0?"[ No Item Equipped ]":getequipname(4),getequipisequiped(5)==0?"[ No Item Equipped ]":getequipname(5),getequipisequiped(6)==0?"[ No Item Equipped ]":getequipname(6),getequipisequiped(7)==0?"[ No Item Equipped ]":getequipname(7),getequipisequiped(8)==0?"[ No Item Equipped ]":getequipname(8),getequipisequiped(9)==0?"[ No Item Equipped ]":getequipname(9));
    
    if(!getequipisenableref(@typr))
    {
     mes "Impossible to refine this item!";
     close;
    }
    
    if(getequiprefinerycnt(@typr)>=20)
    {
     mes "Impossible to refine this more than 20 level";
     close;
    }
       if(#EVENTPOINT < 1000) {
    mes "Not Enogh Event Points";
     close;
    } 
    mes " Good Luck! ";
    if(select("Refine now")) {
     set #EVENTPOINT,#EVENTPOINT-1000;
     successrefitem @typr;
     dispbottom "Your Remaining Event Point(s): "+#EVENTPOINT+".";
     close;
    
    }
    

    2. My client cant see aura on other char even he was on maks lv 255

    i am already diff my client to read costume aura.tga and over 99 level.

    thanks and many thank for you /??

  8. - This has been in my mind for some time now, How do i put BGM on custom maps?

    -> I wanna know the directory to store the music in [does it have to be in bgm or can i have it in grf?]

    -> What file do I edit?

    - Oh and how do I change patcher music? =x

    - Thanks for the help guys.

    If you want to have costum BGM... then you need to compress your mp3....

    I am suggesting using diet mp3 << use google... it have trial version

    then edit your mp3nametable.txt

    and put your costum bgm on BGM folder.... it would be work ^_^

  9. Before I start trying to address the issue, when does the client crash. During normal game play, when entering your password, before getting to the character select, after character select before you appear on the map?

    Ah its fixed.... I think Rathena not compitable with Centos 6.... Just downgrade my VPS OS.... and its Solve my problem :D

    Thanks All who are Helping me ;)

×
×
  • Create New...