Jump to content

PewN

Members
  • Posts

    892
  • Joined

  • Last visited

Everything posted by PewN

  1. PewN

    Help custom skill

    i can't understand you http://rathena.org/wiki/Custom_skill#Skill_database_support
  2. Not working try to change the target->type == BL_PC to s_bl->type == BL_PC
  3. try this change this if( sd->state.monster_ignore && flag&BCT_ENEMY ) to if( sd->state.monster_ignore && target->type == BL_PC )
  4. If I want infinite, do I just change it to "-1"? i think on this line https://github.com/rathena/rathena/blob/master/src/map/status.c#L7840
  5. https://github.com/rathena/rathena/blob/master/src/map/status.c#L7894 try to change the val2 to your desired amount of hit count
  6. @Akbal. just add it on your lua and skill tree
  7. PewN

    chartalk

    Hello!! ^___^ I just made this for you.. prontera,160,200,5 script test_npc 859,{ mes "May I Shout Your name?"; next; switch(select("SURE!:")){ case 1: { atcommand "@kami "+ strcharinfo(0) + ": HELOOOOOOOOOO ALL!!!!"; close2; end; } } } ----------------------------------- " + strcharinfo(0) + " (----> it automatically says the player's name ^___^) ------------------------------------ I put it on "codes" box so it won't be messy xD... ... he say's like an npctalk not a broadcast.
  8. @Shakto is send client hash still working on 2013 client?
  9. i don't know why you are posting this on this section even you didn't release it ~.~
  10. https://github.com/rathena/rathena/blob/master/db/re/item_db.txt
  11. Hi i just want to request here to those people out there who have a backup of Happy Graphic custom weapons ex. Vengeful Sword Blazeguard Skyfire Hawk Bow etc.. thanks
  12. add your checking on line 1524 // Check Authorised letters/symbols in the name of the character if( char_name_option == 1 )
  13. PewN

    Dispell the cart

    wait im wrong. don't remove the sc_push_cart .
  14. prontera,160,187,4 script Freebies 123,{ mes "[Hello]"; mes "[I can give you a free gift based on your future job.]"; mes "[Please choose the correct item for the future job]"; next; if(!#Freebie) { mes "Select one:"; next; switch(select("Swordsman:Magician:Archer:Acolyte:Merchant:Thief")) { case 1: getitem 13758,1; getitem 969,20; getitem 1108,1; getitem 2104,1; getitem 4043,4; //Item for Swordsman break; case 2: getitem 13758,1; getitem 969,20; getitem 1108,1; getitem 2104,1; getitem 4043,4; //Item for Magician break; case 3: getitem 13758,1; getitem 969,20; getitem 1108,1; getitem 2104,1; getitem 4043,4; //Item for Archer break; case 4: getitem 13758,1; getitem 969,20; getitem 1108,1; getitem 2104,1; getitem 4043,4; //Item for Acolyte break; case 5: getitem 13758,1; getitem 969,20; getitem 1108,1; getitem 2104,1; getitem 4043,4; //Item for Merchant break; case 6: getitem 13758,1; getitem 969,20; getitem 1108,1; getitem 2104,1; getitem 4043,4; //Item for Thief break; } set #Freebie, 1; close; } mes "[ Trololol ]"; mes "You already receive your freebies!"; close; OnInit: waitingroom "Get your freebies here ! ",0; end; }
  15. conf/battle/client.conf set it to no // Show rAthena version to users when the login? display_version: yes
  16. try to remove the map[m].flag.src4instance && it will look like this if( st->instance_id )
  17. PewN

    Dispell the cart

    try this on skill.c search for case SC_HAWKEYES: case SC_GUILDAURA: case SC_PUSH_CART: then remove the sc_push_cart
  18. just search this default: // fall through to apply EDP bonuses then reduce the value default: // fall through to apply EDP bonuses // Renewal EDP formula [helvetica] // weapon atk * (1 + (edp level * .8)) // equip atk * (1 + (edp level * .6)) ATK_RATE(wd.weaponAtk, wd.weaponAtk2, 100 + (sc->data[SC_EDP]->val1 * 80)); ATK_RATE(wd.equipAtk, wd.equipAtk2, 100 + (sc->data[SC_EDP]->val1 * 60));
  19. change your mob id to 2300 ~ 3000
  20. they rewrite the instance system. they already remove the src4instance check this changelog http://trac.rathena.org/changeset/17386/rathena/trunk/src/map/atcommand.c
×
×
  • Create New...