Jump to content
  • 0
Sign in to follow this  
IndieRO

help to this script

Question

i try to use instance pvp but i got error when implement this script

 

 


-    script    PD_Settings    -1,{

OnInit:
    set $PD_Timelimit,600;    // Seconds for entering
    set $PD_Minparty,2;        // # of players a party must have
    //set $PD_ItemID,969;    // ItemID //Not working yet
    end;
}

brasilis,200,258,5    script    Duel PVP    406,{

    set .@name$,"^0000FFPvP Warper^000000";

    getpartymember(getcharid(1));
    if(!getcharid(1) || $@partymembercount < $PD_Minparty){
            mes .@name$;
            mes "Make or join the party with exactly "+$PD_Minparty+" member or try again.";
        set PD_makeparty,1;
        close;
    }
    if(PD_makeparty){
        mes .@name$;
        mes "Confirmed. You are in a party. What would you like to do?";
        set PD_makeparty,0;
        next;
    }
    mes .@name$;
    mes "If you have generated the PvP Duel already, you can enter it.";
    next;
    if(getpartyleader(getcharid(1),2) == getcharid(0)){
        select("Generate PvP Duel Instance:Enter the PvP Duel Instance:Return to Brasilis:Cancel");
    } else {
        select(":Enter the PvP Duel Instance:Return to Brasilis:Cancel");
    }
    switch(@menu){
    case 1:
        if(instance_id(1)){
            if(has_instance("1@@pvp") == ""){
                mes .@name$;
                mes "Your group is already registered at an other instance.";
                close;
            }
            mes .@name$;
            mes "Your group is already registered.";
            mes "Select ^0000FFEnter the Duel^000000 in the main menu to enter.";
            close;
        }
        mes .@name$;
        mes "^0000FFPvP Duel Instance^000000 - Try to reserve";
        mes "After making a reservation, you have to talk to NPC behind and";
        mes "select the menu 'Enter the Duel' to enter the PvP Duel";
        close2;
        set .@instance_id,instance_create("PvP_Duel",getcharid(1));
        if(.@instance_id < 0){
            mes .@name$;
            mes "Failed to create PvP Duel Intsance.";
            mes "^FF0000PvP Duel Instances reached its limit.^000000";
            mes "Please report this error to an administrator or GM.";
            close;
        }
        instance_attachmap("1@@pvp",.@instance_id);
        instance_set_timeout $PD_Timelimit,600,.@instance_id;
        instance_init .@instance_id;
        instance_attach instance_id(1);
        end;
    case 2:
        if(!instance_id(1) || has_instance("1@@pvp") == ""){
            mes .@name$;
            mes "The PvP Duel Instance does not exist.";
            mes "Please confirm with your party leader wether the memorial dungeon";
            mes "has been destructed or if the time given for entering has been expired.";
            close;
        }
        instance_attach instance_id(1);
        set PD_Lastinstid,instance_id(1);
        set PD_map,1;
        set @id,getcharid(1);
        donpcevent instance_npcname("PD_Manager")+"::OnInstanceInit";
        warpparty "1@@pvp",51,46,@id;
        //warp has_instance("1@@pvp"),0,0;
        close;
    case 3:
        warp "brasilis",195,259;
        close;
    case 4:
        close;
    }
}

1@@pvp,0,0,0    script    PD_Manager    -1,{
    end;

OnInstanceInit:
    if(strnpcinfo(3) == "PD_Manager")
        end;
    sleep 3000;
    instance_announce .@instance_id,"Get Ready...",0x00FF00;
    sleep 3000;
    instance_announce .@instance_id,"4",0x00FF00;
    sleep 3000;
    instance_announce .@instance_id,"3",0x00FF00;
    sleep 3000;
    instance_announce .@instance_id,"2",0x00FF00;
    sleep 3000;
    instance_announce .@instance_id,"1",0x00FF00;
    sleep 3000;
    instance_announce .@instance_id,"GO!",0x00FF00;
    atcommand "@@pvpon";
    end;

OnPCKillEvent:
    if(PD_map==1){
    //getitem $PD_ItemID,1; //Not working yet
    pvpoff "1@@pvp";
    sleep2 1000;
    instance_attach instance_id(1);
    instance_warpall "brasilis",195,259;
    instance_destroy instance_id(1);
    set PD_map,0;
    end;
    }
    end;
OnPCLogoutEvent:
    if(PD_map==1){
    pvpoff "1@@pvp";
    instance_attach instance_id(1);
    instance_warpall "brasilis",195,259;
    instance_destroy instance_id(1);
    set PD_map,0;
    end;
}
    end;

OnPCDieEvent:
    if(PD_map==1){
    pvpoff "1@@pvp";
    sleep2 1000;
    instance_attach instance_id(1);
    instance_warpall "brasilis",195,259;
    instance_destroy instance_id(1);
    set PD_map,0;
    end;
}
    end;
    
OnPCLoginEvent:
    set PD_map,0;
    end;
}

1@@pvp    mapflag    pvp_noparty
1@@pvp    mapflag    pvp_noguild
1@@pvp    mapflag    partylock
1@@pvp    mapflag    nowarp
1@@pvp    mapflag    nowarpto

this is problem on map server

 

[Error]: script error in file 'npc/custom/cahya/Instance_PvP.txt' line 68 column
 18
    parse_callfunc: expected ')' to close argument list
    65:         }
    66:         switch(@menu){
    67:         case 1:
*   68:                 if(instance_id(1)){
        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
    69:                         if(has_instance("1@@pvp") == ""){
    70:                                 mes .@name$;
    71:                                 mes "Your group is already registered at
 an other instance.";
[Error]: script error in file 'npc/custom/cahya/Instance_PvP.txt' line 147 colum
n 30
    parse_callfunc: expected ')' to close argument list
   144:         //getitem $PD_ItemID,1; //Not working yet
   145:         pvpoff "1@@pvp";
   146:         sleep2 1000;
*  147:         instance_attach instance_id(1);
        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
   148:         instance_warpall "brasilis",195,259;
   149:         instance_destroy instance_id(1);
   150:         set PD_map,0;

 

please somebody help me

 

Share this post


Link to post
Share on other sites

0 answers to this question

Recommended Posts

There have been no answers to this question yet

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
Sign in to follow this  

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.