Jump to content

Sapito Sucio

Members
  • Posts

    188
  • Joined

  • Last visited

  • Days Won

    35

Everything posted by Sapito Sucio

  1. Indeed, I had to download a free vpn service to see if it would work with that.. and it works
  2. With this, the Maya Purple Filter doesn't work ?
  3. I was literally about to ask for this! I don't understand exactly the functionality of that modification Mind explaining?
  4. in groups.cond says this : how to make each new account to be Group 1 ?
  5. The original is: (99+99)/8*(4+10*8) = 2772 Heal Mine: (700+600)*(2+10)*(8) = 124,800 Heal Blue: Max Lvl+Max Int Red = Skill Lvl Heal
  6. Thanks @Emistry & @Lilith !! I did this: And it works ! PS:Sorry about my Thx!
  7. Well,i tried to modify my SRC, to get an automatic autoloot of Skulls I tried this: in pc.c if(battle_config.bone_drop==2 || (battle_config.bone_drop==1 && map[sd->bl.m].flag.pvp)) { struct item item_tmp; memset(&item_tmp,0,sizeof(item_tmp)); item_tmp.nameid=ITEMID_SKULL_; item_tmp.identify=1; map_addflooritem(&item_tmp,1,sd->bl.m,sd->bl.x,sd->bl.y,0,0,0,0); } to this if(battle_config.bone_drop==2 || (battle_config.bone_drop==1 && map[sd->bl.m].flag.pvp)) { struct item item_tmp; memset(&item_tmp,0,sizeof(item_tmp)); item_tmp.nameid=ITEMID_SKULL_; item_tmp.identify=1; map_addflooritem(&item_tmp,1,sd->bl.m,sd->bl.x,sd->bl.y,0,0,0,0); // Warfare Autoloot Skull if (src && src->type == BL_PC) { struct map_session_data *ssd = (struct map_session_data *)src; pc_additem( ssd, &item_tmp, 1); } else { map_addflooritem(&item_tmp,1,sd->bl.m,sd->bl.x,sd->bl.y,0,0,0,0); } } When i try to compile, i get this error: nueva carpeta\rathena\src\map\pc.c(6472): error C2198: 'pc_additem' : too few arguments for a call What can i do ? btw.. I use rAthena SVN
  8. Euphy!! Great job man, i love your scripts! I have a question.. there is an option to show the Zeny cost.. but im going to use this script to sell items in cash, the question is, is there a way to show the cash value ? I was thinking in change this set .ShowZeny,0; // Show Zeny cost, if any? (1: yes / 0: no) npcshopadditem "qshop"+getarg(0),getarg(1),((.ShowZeny)?getarg(3):0);
  9. Mmm Kafra points is not the same that Cash Points.. is it ?
  10. Hola, estoy configurando un servidor de pruebas para posteriormente tenerlo dedicado, me llamó la atención la posibilidad de poder usar Items de forma "Fashion", estuve buscando como hacerlo y quise tratar con la Alice Doll.. Esto fue lo que hice: 5137,Alice_Doll,Alice Doll,5,20,,500,,0,,1,0xFFFFFFFE,7,2,256,,30,0,208,{ bonus bStr,1; bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddEff2,Eff_Sleep,10; },{},{} a 5137,Alice_Doll,Alice Doll,5,20,,500,,0,,1,0xFFFFFFFE,7,2,1024,,30,0,208,{ bonus bStr,1; bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddEff2,Eff_Sleep,10; },{},{} Una vez hecho eso, intenté ponerme el item *-* !... Sin embargo me salió error, mas bien me decía que no podía ponermelo .. "You cant put this item on" Alguien que me pueda ayudar ? Gracias!
×
×
  • Create New...