Jump to content

sinya

Members
  • Posts

    15
  • Joined

  • Last visited

2 Followers

Profile Information

  • Gender
    Female
  • Location
    Taiwan

Recent Profile Visitors

3628 profile views

sinya's Achievements

Poring

Poring (1/15)

0

Reputation

  1. sinya

    Error

    let me guess ... you are using eamod right? pcblock ,0,1;
  2. learning how to use rathena ,almost forgot XD

  3. "Increase MaxHP, MaxSP per refine." bonus bMaxHP,getrefine(); bonus bMaxSP,getrefine();
  4. dunno the reason why you still have that debug warning I don't have any warning on map console
  5. Maki

    Did not notice, looks like some old members from eAthena are joining again =p

  6. Here? status.c #ifdef RENEWAL // renewal formulas status->hit += level + status->dex + status->luk/3 + 175; //base level + ( every 1 dex = +1 hit ) + (every 3 luk = +1 hit) + 175 status->flee += level + status->agi + status->luk/5 + 100; //base level + ( every 1 agi = +1 flee ) + (every 5 luk = +1 flee) + 100 status->def2 += (int)(((float)level + status->vit)/2 + ((float)status->agi/5)); //base level + (every 2 vit = +1 def) + (every 5 agi = +1 def) status->mdef2 += (int)(status->int_ + ((float)level/4) + ((float)status->dex/5) + ((float)status->vit/5)); //(every 4 base level = +1 mdef) + (every 1 int = +1 mdef) + (every 5 dex = +1 mdef) + (every 5 vit = +1 mdef)
  7. to fix output file name index.php find and edit the red part // Copy Equip Sprite SPR/ACT Files To Output Folder copy('Input_Data/Equip/'. $item_name .'.spr', $sprite_female .'/¿©_'. $item_name .'.spr'); copy('Input_Data/Equip/'. $item_name .'.act', $sprite_female .'/¿©_'. $item_name .'.act'); copy('Input_Data/Equip/'. $item_name .'.spr', $sprite_male .'/³²_'. $item_name .'.spr'); copy('Input_Data/Equip/'. $item_name .'.act', $sprite_male .'/³²_'. $item_name .'.act');
  8. yeah~ the debug message give you a hint: Function: getstrlen so covert to string set .@l, getstrlen(""+.@num);
  9. try this if( (flag = pc_additem(sd, &it, 1, LOG_TYPE_SCRIPT)) ) { clif_additem(sd, 0, 0, flag); return 1; } clif_rental_time(sd->fd, nameid, seconds); pc_inventory_rental_add(sd, seconds); log_pick_pc(sd, LOG_TYPE_SCRIPT, nameid, 1, &it); return 0;
  10. Thanks for the concern.. After do like you said, the NPC can be use and can summon MVP. But on the map-server, got these debug : inside function script int__ { find set .@num, atoi(getarg(0)); and replace with set .@num, atoi(""+getarg(0));
  11. try to replace all getmapmobs("this") with mobcount("this","all")
  12. bonus bIgnoreDispell,n; n -->any number
  13. Hehe~, I am busy on university entrance examination in this summer vacation , but I'm free now

    1. EvilPuncker
    2. adrian

      adrian

      so i can ask if i have a problem cause you are free..

      hi there ^^

  14. finally you here :)

    1. adrian

      adrian

      i dont know where to post.. but i was crazy searching for on how to fix to auto close.. i dont know where do i apply that patch,, mind give me some tutoria; ?

  15. use this tool http://rathena.org/board/topic/53424-weemapcache/ and follow this guide
×
×
  • Create New...