Jump to content

kelvin

Members
  • Posts

    23
  • Joined

  • Last visited

Posts posted by kelvin

  1. [Error]: sv_readdb: Insufficient columns in line 77 of "db/re/mob_db.txt" (found 56, need at least 57).
    [Error]: sv_readdb: Too many columns in line 144 of "db/re/mob_db.txt" (found 58, maximum is 57).
    [Status]: Done reading '1314' entries in 'db/re/mob_db.txt'.
    [Status]: Done reading '0' entries in 'db/mob_db2.txt'.
    [Error]: mob_parse_row_mobskilldb: Non existant Mob id 1071
    [Error]: sv_readdb: Could not process contents of line 358 of "db/re/mob_skill_db.txt".
    [Error]: sv_readdb: Could not process contents of line 359 of "db/re/mob_skill_db.txt".
    [Error]: sv_readdb: Could not process contents of line 360 of "db/re/mob_skill_db.txt".
    [Error]: mob_parse_row_mobskilldb: Non existant Mob id 1138
    [Error]: sv_readdb: Could not process contents of line 699 of "db/re/mob_skill_db.txt".
    [Error]: sv_readdb: Could not process contents of line 700 of "db/re/mob_skill_db.txt".
    [Error]: sv_readdb: Could not process contents of line 701 of "db/re/mob_skill_db.txt".
    [Error]: sv_readdb: Could not process contents of line 702 of "db/re/mob_skill_db.txt".
    
    
    [Error]: npc_parse_mob: Unknown mob ID 1071 (file 'npc/re/mobs/dungeons/treasure.txt', line '18').
    [Error]: npc_parse_mob: Unknown mob ID 1071 (file 'npc/re/mobs/dungeons/treasure.txt', line '95').
    [Error]: npc_parse_mob: Unknown mob ID 1138 (file 'npc/re/mobs/fields/morocc.txt', line '122').
    [Error]: npc_parse_mob: Unknown mob ID 1138 (file 'npc/re/mobs/fields/prontera.txt', line '117').

     

    can i know how to clear this error?

  2. mes "^FF0000Sorry there is someone with the same ip in this event.^000000"

     

    this only says that someone already in the event. possible to make it show the player name with same ip in that statement? 

     

    example: mes "^FF0000Sorry, GMxxx which is same ip with you has joinned this event.^000000"

  3. gonryun,158,114,5    script    Pvp Event   884,{
    if( Class == Job_Novice ){ mes "Novice cant join."; close; }
        mes "[ Pvp Event ]";
        mes "Hi " + strcharinfo(0) + ", What can I do for you?";
        next;
        mes "-----^008000Pvp Event MAP INFO^000000----";
        mes "There are currently [^008800"+getmapusers("pvp_n_1-5")+"^000000] players on map";
        next;
        menu "Register",-,"What is Pvp Event?",what,"Leave",leave;
        next;
        mes "[Pvp Event]";
        .@myaid = getcharid(3);
        while( .@i < .size_reg && .reg_aid[.@i] != .@myaid ) .@i++;
        if ( .@i == .size_reg ) {
            .@ip$ = getcharip();
            while( .@j < .size_reg && .reg_ip$[.@j] != .@ip$ ) .@j++;
            if ( .@j == .size_reg ) {
                .reg_aid[ .size_reg ] = .@myaid;
                .reg_ip$[ .size_reg ] = .@ip$;
                .size_reg++;
            }
            else {
                mes "^FF0000Sorry there is someone with the same ip in this event.^000000";
                close;
            }
        }
        mes "Thankyou for registering Mr. " + strcharinfo(0) + ", Have fun!";
        warp "pvp_n_1-5",0,0;
        end;

     

    Can someone help me make this script that can show player name with same ip is in this event.

  4. if (select(" ~ Change into ^0055FF"+jobname(.@i)+"^000000 class: ~ ^777777"+((getargcount() > 1)?"Go back":"Cancel")+"^000000") == 1) {
       if (.@i==4211 || .@i==4212 || .@i==4215) resetlvl(1);
       mes "[Job Master]";
       mes "You are now "+A_An(jobname(.@i))+"!";
       if (.@i==4001 && .LastJob) set lastJob, Class;
       jobchange .@i;
       if (.@i==4001 || .@i==4023) resetlvl(1);
       specialeffect2 338; specialeffect2 432;
       if (.Platinum) callsub Get_Platinum;
       close;
      }
      if (getargcount() == 1) return;
      mes "[Job Master]";
    }
    end;
    }

     

    how can i make this script reset base lvl to lvl 1 and reset stats point to lvl 1 point without effect last job skill. i have set this and it reset all to novice stats.    if (.@i==4211 || .@i==4212 || .@i==4215) resetlvl(1);

  5. Thanks patskie. The idea is there just need edit it. The script is every Gm above lvl60 need to set their own password . Can someone make me the script similar the script from the link but manually set password at the script and all gm's must input that password to use @item command

×
×
  • Create New...