Jump to content

Felipe

Members
  • Posts

    51
  • Joined

  • Last visited

Profile Information

  • Gender
    Male
  • Location
    Brazil

Recent Profile Visitors

2695 profile views

Felipe's Achievements

Poring

Poring (1/15)

4

Reputation

  1. Try a big number: (sg->limit - DIFF_TICK(tick, sg->tick)*8));
  2. You've said this part change a little bit : (sg->limit - DIFF_TICK(tick, sg->tick))); So: sc_start4(ss, bl, SC_VACUUM_EXTREME, 100, sg->skill_lv, sg->group_id, (sg->val1<<16)|(sg->val2), ++sg->val3*500, (sg->limit - DIFF_TICK(tick, sg->tick)*2));
  3. If is a text file try Notepad++ ou Visual Studio Code(Notepad++ from microsoft)
  4. I look in this link (Post Number 7): https://rathena.org/board/topic/60404-custom-skill-effects/ And I think it would work sc_start4(ss, bl, SC_VACUUM_EXTREME, 400, sg->skill_lv, sg->group_id, (sg->val1<<16)|(sg->val2), ++sg->val3*500, (sg->limit - DIFF_TICK(tick, sg->tick)));
  5. .@party_id = getcharid(0,"+strcharinfo(0)+"); OR .@party_id = getcharid(0,"strcharinfo(0)");
  6. This: .@party_id = getcharid(1); to .@party_id = getcharid(2{,strcharinfo(0)});
  7. I guess is not in this line, its look like delay not the damege of skill. I think is this line in src/map/skill.c: sc_start4(ss, bl, SC_VACUUM_EXTREME, 100, sg->skill_lv, sg->group_id, (sg->val1<<16)|(sg->val2), ++sg->val3*500, (sg->limit - DIFF_TICK(tick, sg->tick))); BEFORE DO ANY THING MAKE A BACKUP OF skill.c I would try this: sc_start4(ss, bl, SC_VACUUM_EXTREME, 100, sg->skill_lv, sg->group_id, (sg->val1<<16)|(sg->val2), ++sg->val3*700, (sg->limit - DIFF_TICK(tick, sg->tick)));
  8. May be work This: .@party_id = getcharid(1); to: @party_id = getcharid(1);
  9. I guess the error is not in this part, the console return some line ? Search for things like 'char' 'char_id'
  10. What's mean the number 13181 ?
  11. In your script have some line which is telling char id = 1, change or just add this -> // In the begining of the line. You're welcome
  12. Então Felipe, a instancia ela funciona normal, só que só da erro nessa parte. Minha instance_db está correta, assim creio eu. Vou posta-la aqui. ID,Name,LimitTime,IdleTimeOut,EnterMap,EnterX,EnterY,Map2,...,Map255 15,Nightmarish Jitterbug,3600,300,1@jtb,16,18,1@jtb I guess the error is here : 15,Nightmarish Jitterbug,3600,300,1@jtb,16,18,1@jtb You repeat the map 1@jtb, try change delete it: 15,Nightmarish Jitterbug,3600,300,1@jtb,16,18 or: 15,Nightmarish Jitterbug,3600,300,1@jtb,16,18,
  13. Did you try to start all process with root ? Including MySQL and rAthena And I guess have a process already making connection, try to Kill everything related to MySQL. I think you can try MariaDB maybe work. @edit: I've a issue like this, I change for a FreeBSD based, idk you experience with FreeBSD or OpenBSD but let's give a try
  14. I can be wrong, but I guess the problem is this line : setarray .woe_state_0[0],1,0,0,0,0,0,0; Try this: setarray .woe_state_0[0],1,1,0,0,0,0,0; and see what's happen
  15. I'm looking around and found this, may help you: https://rathena.org/board/topic/106364-instance-is-already-in-use-while-trying-to-duplicate-npc/
×
×
  • Create New...