Jump to content

MarkZD

Members
  • Posts

    134
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by MarkZD

  1. There's no need to put the atcommand.h part. I believe the problem is because static functions are local and she is trying to put it global even it beeing local, wich doesn't make sense to the compiler. Just remove it, and you'll be ok.
  2. There's a problem on algorithm security: runflag = MAPSERVER_ST_MAINTENANCE; //Activate maintenance, disable all player except Admin to login Should be before the routine which kicks players from server, not after: + iter = mapit_getallusers(); + for (pl_sd = (TBL_PC*)mapit_first(iter); mapit_exists(iter); pl_sd = (TBL_PC*)mapit_next(iter)) { + if (pc_isGM(pl_sd) < 99) { // Kick anyone with level below Admin(99) + clif_GM_kick(NULL, pl_sd); + } + } + mapit_free(iter); As someone could get in right before the flag being set and just after kicking sequence. Also, apparently while flag is not set, if a player login and wait in char selection page, he just need to wait till kicking routine end to give Ok and play.
  3. The client try to find the first clientinfo.xml into one from the defined .grf files, from your data file. First it checks in your custom "namero.grf" for files, if it's not there, it'll check into data.grf. Data folder, it's my guess, is the last place a file is checked, if it doesn't exist in a .grf file.
  4. Create a variable of type struct party_data; Sample: struct party_data *party; Use party_search function: party_search(party_id); Sample: party = party_search(party_id); Use a counter(You'll need to create some int vars before, which will be used in the loop[MAX_PARTY is a constant, and already exists]): if(party!=NULL){ for(i=0;i<MAX_PARTY;i++){ if(p->party.member[i].account_id) j++; } } j will be the number of party members. Of course, it'll depends on how u know the code. it'd be better you u told exactly what you want to do, maybe there're other way of doing it without changing mob.c.
  5. Just the MATK numbers that client can see is shown after, the increase works right after it's cast, just as it should. The visualization part is a bug: http://rathena.org/board/tracker/issue-5663-amplify-magic-power-not-showing-information-in-the-correct-moment/page__gopid__8714#entry8714
  6. It's fine you've got it. Would you like to share how you did it?. ;D
  7. MarkZD

    getcostumeitem

    If i'm not wrong, this script from Cronus is used to create a visual equipment, not just a costum eqp. It's will create a camouflage eqp(I don't know how you call it in english servers), like this one: http://top.ragnarokallstars.net/wp-content/uploads/2012/06/disfarces-ragnarokallstars3.jpg It's what attrib 5 in Cronus, is supposed to do. It's a great stuff as you can create a visual from any eqp in the fly.
  8. I didn't test, but, try it(It would only work on recent versions, rAthena 15185+): Open: src/map/battle.c Find: if( sc && sc->data[sC_DEVOTION] && damage > 0 && skill_id != PA_PRESSURE && skill_id != CR_REFLECTSHIELD ) damage = 0; Change it to: if( sc && sc->data[sC_DEVOTION] && damage > 0) damage = 0; Open: src/map/skill.c Find: if( !sc || (!sc->data[sC_DEVOTION] && skillid != CR_REFLECTSHIELD) ) Change it to: if( !sc || (!sc->data[sC_DEVOTION] ) Find: battle_delay_damage(tick, dmg.amotion,bl,src,0,CR_REFLECTSHIELD,0,rdamage,ATK_DEF,0); Change it to: battle_delay_damage(tick, dmg.amotion,bl,src,0,0,0,rdamage,ATK_DEF,0); Find: if( sc && sc->data[sC_DEVOTION] && skillid != PA_PRESSURE ) Change it to: if( sc && sc->data[sC_DEVOTION] )
  9. Change this line from the code I posted above: snprintf(filename, 255, "%s/"DBPATH"monster_block.txt", db_path); To this: snprintf(filename, 255, "%s/monster_block.txt", db_path); And recompile.
  10. Before the found part: HERE /*========================================== * *------------------------------------------*/ ACMD_FUNC(monster) { char name[NAME_LENGTH]; char monster[NAME_LENGTH]; char eventname[EVENT_NAME_LENGTH] = ""; int mob_id; int number = 0;
  11. Refer to my post: http://rathena.org/board/topic/66265-talking-with-fakename/ I didn't test about inviting player, though.
  12. @gmIgnore: Avoids all GMs from specified and inferior level from attacking, beeing attacked and using skills. Usage: @gmIgnore 80(enable command to GMs from level 80 and lower) @gmIgnore <optionalvalue>(just send command again to disable) In path: ../src/map Open map.c Find: int night_flag = 0; // 0=day, 1=night [Yor] After ADD: int gmIgnored = 0; Open map.h Find: extern char db_path[256]; After ADD: extern int gmIgnored; Open battle.c Find: int strip_enemy = 1; //Flag which marks whether to remove the BCT_ENEMY status if it's also friend/ally. struct block_list *s_bl = src, *t_bl = target; After ADD: int isIgnored = 0, gmLevel; Find: switch( t_bl->type ) { //Checks on target master case BL_PC: { struct map_session_data *sd; if( t_bl == s_bl ) break; sd = BL_CAST(BL_PC, t_bl); After ADD: if(s_bl->type == BL_PC)// Players & GMs can't hit this gm { if((gmLevel = pc_get_group_level(sd)) && gmLevel < gmIgnored) // Target is the ignored GM isIgnored = 1; else if((sd1 = BL_CAST(BL_PC, s_bl)) && (gmLevel = pc_get_group_level(sd1)) && gmLevel < gmIgnored) // Attacker is the ignored GM isIgnored = 1; }else{//Mobs can't hit this GM, this check doesn't work for homunculus though if((gmLevel = pc_get_group_level(sd)) && gmLevel < gmIgnored) // Only GMs will suffer this isIgnored = 1; } Find: if( sd->state.monster_ignore && flag&BCT_ENEMY ) Replace With: if( (sd->state.monster_ignore || isIgnored) && flag&BCT_ENEMY ) Find: case BL_MOB: { struct mob_data *md = BL_CAST(BL_MOB, t_bl); After ADD: struct map_session_data *sd; sd = BL_CAST(BL_PC, s_bl); if((gmLevel = pc_get_group_level(sd)) && gmLevel < gmIgnored) // Gm can't hit mobs return 0; Open skill.c Find: int skill_check_condition_castbegin(struct map_session_data* sd, short skill, short lv) { struct status_data *status; struct status_change *sc; struct skill_condition require; int i; nullpo_ret(sd); if (lv <= 0 || sd->chatID) return 0; Replace With: int skill_check_condition_castbegin(struct map_session_data* sd, short skill, short lv) { struct status_data *status; struct status_change *sc; struct skill_condition require; int i, gmLevel; nullpo_ret(sd); if (lv <= 0 || sd->chatID) return 0; if((gmLevel = pc_get_group_level(sd)) && gmLevel < gmIgnored) return 0; Open atcommand.c Insert gmIgnore function after some function you like: /*========================================== * @gmIgnore * => Makes monsters ignore every GM from a gmlevel range. [MarkZD] *------------------------------------------*/ ACMD_FUNC(gmIgnore) { int gmlevel; char toPrint[CHAT_SIZE_MAX]; nullpo_retr(-1, sd); gmlevel = atoi(message); if (!gmIgnored) { if (!message || !*message || !gmlevel) { clif_displaymessage(fd, "Please, enter max level to restrict (usage: @gmIgnore <max gmlevel to be blocked || 0 or NULL to disable>)."); return -1; } gmIgnored = gmlevel+1; sprintf(toPrint, "GMs up to level %d can't fight now.", gmlevel); clif_displaymessage(sd->fd, toPrint); } else { gmIgnored = 0; clif_displaymessage(sd->fd, "All GMs can fight now"); } return 0; } Add the AtCommandInfo: ACMD_DEF(gmIgnore),
  13. I din't test, but I think it'll do: In ../src/map In skill.c Find: //Special message when trying to use strip on FCP [Jobbie] if( sd && skillid == ST_FULLSTRIP && tsc && tsc->data[sC_CP_WEAPON] && tsc->data[sC_CP_HELM] && tsc->data[sC_CP_ARMOR] && tsc->data[sC_CP_SHIELD]) { clif_gospel_info(sd, 0x28); break; } Replace with: //Special message when trying to use strip on FCP [Jobbie] if( sd && skillid == ST_FULLSTRIP && !(sd->sc.data[sC_SPIRIT] && sd->sc.data[sC_SPIRIT]->val2 == SL_ROGUE) && tsc && tsc->data[sC_CP_WEAPON] && tsc->data[sC_CP_HELM] && tsc->data[sC_CP_ARMOR] && tsc->data[sC_CP_SHIELD]) { clif_gospel_info(sd, 0x28); break; }
  14. In ../src/map In file: status.c Find this function: int status_get_sc_def Within this function, find: if (status_isimmune(bl)) switch (type) { case SC_DECREASEAGI: case SC_SILENCE: case SC_COMA: case SC_INCREASEAGI: case SC_BLESSING: case SC_SLOWPOISON: case SC_IMPOSITIO: case SC_AETERNA: case SC_SUFFRAGIUM: case SC_BENEDICTIO: case SC_PROVIDENCE: case SC_KYRIE: case SC_ASSUMPTIO: case SC_ANGELUS: case SC_MAGNIFICAT: case SC_GLORIA: case SC_WINDWALK: case SC_MAGICROD: case SC_HALLUCINATION: case SC_STONE: case SC_QUAGMIRE: case SC_SUITON: case SC_SWINGDANCE: case SC__ENERVATION: case SC__GROOMY: case SC__IGNORANCE: case SC__LAZINESS: case SC__UNLUCKY: case SC__WEAKNESS: return 0; } Remove the case skills you don't want GTB to block, sample in case you just want dispell and coma to be blocked: if (status_isimmune(bl)) switch (type) { case SC_COMA: return 0; } Dispell is checked in skill.c, so you don't need to worry about it. I guess you want it to block coma from tarot, right? If you need it to fully block tarot you need to change it in skill.c In skill.c Find: status_zap(src,0,skill_db[skill_get_index(skillid)].sp[skilllv]); // consume sp only if succeeded [inkfish] After ADD: if(status_isimmune(bl)) break;
  15. In path: ../src/map In skill.h Within struct s_skill_db { Find: int unit_flag; After ADD: int pneumaIgnore; In skill.c Within function bool static bool skill_parse_row_skilldb(char* split[], int columns, int current) Find: safestrncpy(skill_db[i].desc, trim(split[16]), sizeof(skill_db[i].desc)); After Add: if(split[17] && atoi(split[17])) skill_db[i].pneumaIgnore = 1; else skill_db[i].pneumaIgnore = 0; Within function static void skill_readdb(void) Find: sv_readdb(db_path, DBPATH"skill_db.txt" , ',', 17, 17, MAX_SKILL_DB, skill_parse_row_skilldb); Replace with: sv_readdb(db_path, DBPATH"skill_db.txt" , ',', 17, 18, MAX_SKILL_DB, skill_parse_row_skilldb); In battle.c Find: if( sc->data[sC_PNEUMA] && (flag&(BF_MAGIC|BF_LONG)) == BF_LONG || sc->data[sC__MANHOLE] ) { Before ADD: if(!skill_db[skill_num].pneumaIgnore) In path: ../db/re OR ../db/pre-re (depending on which version you're using). In file:skill_db.txt Go to the skill you want Pneuma to be ignored and add a comma and number 1 like this: To: It's optional to put 0 as any skill that has not the last value will be filled with 0.
  16. In src/map/atcommand.c: Find: /*========================================== * *------------------------------------------*/ ACMD_FUNC(monster) { char name[NAME_LENGTH]; char monster[NAME_LENGTH]; char eventname[EVENT_NAME_LENGTH] = ""; int mob_id; int number = 0; Before add: static int monsterBlock(int compareid){ FILE *fp; char line[1024]; int ln=0; int nameid; char filename[255]; snprintf(filename, 255, "%s/"DBPATH"monster_block.txt", db_path); if( (fp=fopen(filename,"r"))==NULL ){ ShowError("can't read %s\n", filename); return -1; } while(fgets(line, sizeof(line), fp)) { if(line[0] == '\n' || line[0] == '\r' || line[0] == ' ' || (line[0]=='/' && line[1]=='/')) continue; nameid = atoi(line); if(compareid == nameid) { fclose(fp); return 1; // Monster Blocked } } fclose(fp); return 0; // Monster Accepted } Within ACMD_FUNC(monster) find: int mob_id; Replace with: int mob_id, mB = 0; Find: if (mob_id == MOBID_EMPERIUM) { clif_displaymessage(fd, msg_txt(83)); // Monster 'Emperium' cannot be spawned. return -1; } After add: if(pc_get_group_level(sd) < 99 && (mB = monsterBlock(mob_id))) if(mB == 1){ clif_displaymessage(fd, "Acess_Restriction: Administrator restricted this monster from being called by @monster direct command."); return -1; } Go to db path and create a file called: monster_block.txt Put into it ID from monsters you want to block, like this: -------------------------------------------------------------------------------------------------------- Admin level 99 can still summon any monster, if you don't want it change it: if(pc_get_group_level(sd) < 99 && (mB = monsterBlock(mob_id))) To: if((mB = monsterBlock(mob_id))) Edit: fixed the fclose part which could lead to file descriptor staying opened "forever".
  17. In script.c, change your getmapusers function with this one. /*========================================== * ƒ}ƒbƒvŽw’胆[ƒU[”Š“¾ *------------------------------------------*/ BUILDIN_FUNC(getmapusers) { struct map_session_data* pl_sd; struct s_mapiterator* iter; const char *str; int m, count = 0; str=script_getstr(st,2); if( (m=map_mapname2mapid(str))< 0){ script_pushint(st,-1); return 0; } for( pl_sd = (TBL_PC*)mapit_first(iter); mapit_exists(iter); pl_sd = (TBL_PC*)mapit_next(iter) ) { if (m == pl_sd->bl.m && pc_get_group_level(pl_sd) < 1) { ++count; } } script_pushint(st,count); return 0; }
  18. The other information are provided by the user and are account pertinent information. GeoIP is a personal information, with no relation to account in true, it's a private thing as your home address, and has almost or no use to the major staff. What I said is just an incrementation to set who can see IP/GeoIP.
  19. It'd be better if it was specified in groups permission, because there may be people which don't want part of staff to see such privates things.
  20. I think the third is not so necessary as this skill already has a formula, so it'd be more like a custom of a custom because you'd already can define the max weight used. But if devs want to implement, I just approve because who doesn't want to use it, just leave it untouched. Also, leave some number as unlimited, as 0 or -1, to max weight used(not so necessary too, as when you change max weight you'll see max weight used for damage).
  21. No. ATK, DEF, mATK, mDEF, ASPD are not even implemented yet. There're other things, but it's all beeing worked out and implemented.
  22. The Mystical Amplification is working as Intended, as this will reduce your some % of TOTAL MATK and then Add it to the final damage.. Lets say you have MATK : 406+0, when you cast Amplify, it will make your MATK to 271 so.. 406 - 271 = 135 <-- This will add to your final magic damage. mAtk isn't reduced after Mystical Amplification, where did you get this from? mAtk is just showing after a skill usage since a change that didn't test it. http://rathena.org/b...correct-moment/ ----------------------------------------------------------------------------- @vlatag12, I think you're experiencing a particular problem, maybe due to a bad update or maybe you're experiencing something related to a very high mAtk which bugs and reduces mAtk when it increases. I think you could show some prints from your alt+q before and after mystical amplification and one after you cast some magic attack on a monster.
  23. I never compared the numbers strictly, but Recognized Spell always worked to me in rA. Also, there's a recent report from Mystical Amplification and it says it's working. http://rathena.org/board/tracker/issue-6103-amplify-magical-power-high-wizard/ Try updating your SVN, your version is 397 revisions later.
  24. Since you're using rA newest version, it's already implemented in main chat. If you need it to PM, party, guild etc, follow these changes: In clif.c Find: Change to: Find: Change to: Find: Change to: Find: Change to: In intif.c Find: Change to: In map.c Find: Change to: Some credits go to Cretino from Cronus Emulator, as I readapted his changes to rA. With these changes, when fakename is enabled on the target and you send him a pm, it will find for fakename not for his real nick. I didn't tested everything yet(but I'll), but if you need something different or any error occurs, I'll try helping.
  25. Change it: if( sc->data[sC_EDP] ){ // FIX ME: Should Rolling Cutter be affected by EDP? switch(skill_num){ case AS_SPLASHER: case AS_VENOMKNIFE: case AS_GRIMTOOTH: case GC_ROLLINGCUTTER: break; #ifndef RENEWAL_EDP case ASC_BREAKER: case ASC_METEORASSAULT: break; #else case AS_SONICBLOW: case ASC_BREAKER: case GC_COUNTERSLASH: case GC_CROSSIMPACT: ATK_RATE(50); // only modifier is halved but still benefit with the damage bonus break; #endif default: ATK_ADDRATE(sc->data[sC_EDP]->val3); } } To: if( sc->data[sC_EDP] ){ switch(skill_num){ case AS_SPLASHER: case AS_VENOMKNIFE: case ASC_METEORASSAULT: break; #ifdef RENEWAL_EDP case AS_SONICBLOW: case ASC_BREAKER: case GC_COUNTERSLASH: case GC_CROSSIMPACT: ATK_RATE(50); // only modifier is halved but still benefit with the atk and weapon bonus break; #else case ASC_BREAKER: break; default: ATK_ADDRATE(sc->data[sC_EDP]->val3);//It doesn't exist in RENEWAL #endif } }
×
×
  • Create New...