Jump to content

Triedge

Members
  • Posts

    46
  • Joined

  • Last visited

Everything posted by Triedge

  1. Alguien te dio la respuesta? Tengo el mismo problema.
  2. unfortunately my client has already been patched with gepard and I cannot request a repatch at this time. So I must look for some alternative. If you know a guide on how to make that work, I would really appreciate it! I found a way, I just need to put the default icon state inside stateiconimginfo.lub Won't you have one ready
  3. need help, my client have that. how fix?
  4. I just did what you advised and it didn't work.
  5. i used this: Super Saiyan Aura - Animated Headgears - rAthena but... no work. The sprite is not displayed in any way. Any idea why this happens?
  6. what is the Skype of @Functor ?
  7. Currently I use a Gepard, but I think that the gepard.license that they gave me ... is incorrect it was modified, how could I contact @Functor so that he can confirm if I am using the correct gepard.license?
  8. I need to create an NPC Shop where all the effects (refines, cards and options) are displayed.
  9. I make the request for if it is possible to create a script command that allows adding objects to an NPC Shop, but that has faculties such as refine, Cards and ramdom options Example: npcshopadditem2("<name>",<item id>,<price>,refine,card0,card1,card2,card3); npcshopadditem3("<name>",<item id>,<price>,refine,card0,card1,card2,card3,<RandomIDArray>,<RandomValueArray>,<RandomParamArray>);
  10. I am currently using the 2018-06-20eRagexeRE.exe client, but it seems that it has some problems in Pre-Renewal and causes some problems (example: Unexpected closures and problems with changing resolutions) So ... what executable do they currently use and why?
  11. Sorry. My browser has been very unstable and I think I do not send the message correctly. I think I even sent you several private messages by mistake.
  12. this is possible?

     

  13. example: dispbottom "Hello<tab>World"; I have tried using "\t" and other variants. "\r\t" etc...
  14. Is it currently compatible? My website will use php 7 and I need to know if Flux works well with that.
  15. Last night my server also received a Crash Signal, but I can not determine if it is because of the same problem. What Rathena version do you use? Customer? Renewal or Pre-Renewal?
  16. You're still alive?

    It's been a long time since anything was known of you.

  17. I am currently making a modification to the party system, but for it to work, I need to verify if the player has an SC_ I currently have this modification ... in char/int_party.c int party_check_exp_share(struct party_data *p) { struct map_session_data *sd[MAX_PARTY]; unsigned int i; for (i = 0; i < MAX_PARTY; i++) { if ((sd[i] = p->data[i].sd) == NULL) continue; if ((CheckMasterMode(p->data[i].sd) == TRUE)) { return 1; } } return (p->party.count < 2 || p->max_lv - p->min_lv <= party_share_level); } in map/status.c bool CheckMasterMode(struct map_session_data *sd) { struct status_change *sc; nullpo_retr(false, sd); sc = &sd->sc; if (sd && sc && sc->data[SC_MASTERMODE]) { ShowDebug("Player en SC_MASTERMODE \n"); return true; } ShowDebug("No have SC_Mastermode! \n"); return false; } in map/status.h bool CheckMasterMode(struct map_session_data *sd); But at the moment of compiling I get the following error.
×
×
  • Create New...