Jump to content

Sero

Members
  • Posts

    5
  • Joined

  • Last visited

Profile Information

  • Gender
    Male
  • Location
    Costa Rica

Sero's Achievements

Poring

Poring (1/15)

0

Reputation

  1. Hello rAthena community, im Sero from Divine RO Community, for 2 days ago i tried to configure the AI Sakray (for 2012 clients) with the all time software, but dosen't work, I wanted to know if you have been able to configure it properly the AI so they could show me how they did it. PS: I use 2012-04-10 client Thank's and Regard's Sero
  2. hi its me again, excuseme for mi bad english, in this time i need help with a custom atcommand this is the "code" /*========================================== * Moblevel v 1.0 * originally by [sero] Divinero *------------------------------------------*/ ACMD_FUNC(moblevel) { char atcmd_output2[CHAT_SIZE_MAX]; struct mob_db *mob, *mob_array[MAX_SEARCH]; int param1, param2, count; int i, k, j, d; memset(atcmd_output, '0', sizeof(atcmd_output)); memset(atcmd_output2, '0', sizeof(atcmd_output2)); if (!message || !*message || sscanf(message, "%d %d", &param1, &param2) == 2) { if( param1 < 1 || param1 > 161 ) { clif_displaymessage(fd, "xD"); return -1; } if( param2 < 1 || param2 > 161 ) { clif_displaymessage(fd, "xD"); return -1; } if (param1 < param2) { j = param1; d = param2; while (j <= d) { count = mobdb_searchlv_array(mob_array, MAX_SEARCH, j); j =+1; if( count > MAX_SEARCH ){ sprintf(atcmd_output, msg_txt(269), MAX_SEARCH, count); clif_displaymessage(fd, atcmd_output); count = MAX_SEARCH; } } } if (param2 < param1) { j = param2; d = param1; while (j <= d) { count = mobdb_searchlv_array(mob_array, MAX_SEARCH, j); j =+1; if( count > MAX_SEARCH ){ sprintf(atcmd_output, msg_txt(269), MAX_SEARCH, count); clif_displaymessage(fd, atcmd_output); count = MAX_SEARCH; } } } if (param2 == param1) { j = param2; d = param1; count = mobdb_searchlv_array(mob_array, MAX_SEARCH, j); if( count > MAX_SEARCH ){ sprintf(atcmd_output, msg_txt(269), MAX_SEARCH, count); clif_displaymessage(fd, atcmd_output); count = MAX_SEARCH; } } for (k = 0; k < count; k++) { mob = mob_array[k]; // stats if (mob->mexp) sprintf(atcmd_output, "MVP Monster: '%s'/'%s'/'%s' (%d)", mob->name, mob->jname, mob->sprite, mob->vd.class_); else sprintf(atcmd_output, "Monster: '%s'/'%s'/'%s' (%d)", mob->name, mob->jname, mob->sprite, mob->vd.class_); clif_displaymessage(fd, atcmd_output); sprintf(atcmd_output, " Level:%d HP:%d SP:%d Base EXP:%u Job EXP:%u", mob->lv, mob->status.max_hp, mob->status.max_sp, mob->base_exp, mob->job_exp); clif_displaymessage(fd, atcmd_output); } return 0; } if (!message || !*message || sscanf(message, "%d %d", &param1, &param2) == 1) { if( param1 < 1 || param1 > 161 ) { clif_displaymessage(fd, "xD"); return -1; } count = mobdb_searchlv_array(mob_array, MAX_SEARCH, param1); if( count > MAX_SEARCH ){ sprintf(atcmd_output, msg_txt(269), MAX_SEARCH, count); clif_displaymessage(fd, atcmd_output); count = MAX_SEARCH; } for (k = 0; k < count; k++) { mob = mob_array[k]; // stats if (mob->mexp) sprintf(atcmd_output, "MVP Monster: '%s'/'%s'/'%s' (%d)", mob->name, mob->jname, mob->sprite, mob->vd.class_); else sprintf(atcmd_output, "Monster: '%s'/'%s'/'%s' (%d)", mob->name, mob->jname, mob->sprite, mob->vd.class_); clif_displaymessage(fd, atcmd_output); sprintf(atcmd_output, " Level:%d HP:%d SP:%d Base EXP:%u Job EXP:%u", mob->lv, mob->status.max_hp, mob->status.max_sp, mob->base_exp, mob->job_exp); clif_displaymessage(fd, atcmd_output); } return 0; } if (!message || !*message) { clif_displaymessage(fd, "Please, enter a Monster/ID (usage: @moblevel <monster_name> or <monster_id>)."); return -1; } else { if ((i = mobdb_checkid(atoi(message)))) { mob_array[0] = mob_db(i); count = 1; } else count = mobdb_searchname_array(mob_array, MAX_SEARCH, message); if (!count) { clif_displaymessage(fd, msg_txt(40)); // Invalid monster ID or name. return -1; } if (count > MAX_SEARCH) { sprintf(atcmd_output, msg_txt(269), MAX_SEARCH, count); clif_displaymessage(fd, atcmd_output); count = MAX_SEARCH; } for (k = 0; k < count; k++) { mob = mob_array[k]; if (mob->mexp) sprintf(atcmd_output, "MVP Monster: '%s'/'%s'/'%s' (%d)", mob->name, mob->jname, mob->sprite, mob->vd.class_); else sprintf(atcmd_output, "Monster: '%s'/'%s'/'%s' (%d)", mob->name, mob->jname, mob->sprite, mob->vd.class_); clif_displaymessage(fd, atcmd_output); sprintf(atcmd_output, " Level:%d HP:%d SP:%d Base EXP:%u Job EXP:%u", mob->lv, mob->status.max_hp, mob->status.max_sp, mob->base_exp, mob->job_exp); clif_displaymessage(fd, atcmd_output); } return 0; } } the command should work if you put the name of a mob give its level and othergeneralities (that if it works), and if you put a level to give an overview of the mobsat that level, and if you put a level range such as "100 120 "give the same generalities, but it really does is pull my server when I put the level range -. - Thank you very much!
  3. Excuse Me for my ignorance (and my very bad english)... I need learn to generate packets... Example from exe 2012-02-14bRagexeRE D_D thx!
×
×
  • Create New...