Jump to content

Garkor

Members
  • Posts

    69
  • Joined

  • Last visited

Posts posted by Garkor

  1. In my opinion you'll just need to add it to the array on bottom of the script.

    	setarray .Shop[0],		// Card Shop items: <ID>,<point cost>
    	 30814,300,12246,750;
    

    Just change it to:

    	setarray .Shop[0],		// Card Shop items: <ID>,<point cost>
    	 30814,300,12246,750,616,2;
    

    Best regards,

    Garkor

  2. rAthena doesn't have any pvp warper by default but at the board you can download a lot of pvp warper or else you can create it by yourself. Its very easy if you dont need some special things.

    map,x,y,4	script	PvP Warper    411,{
    
    set .@mes$,"[^777777PvP Warper^000000]";
    
    mes .@mes$;
    switch(select("Room 1","Room 2","Room 3","Cancel")){
    	case 1:
    		close2;
    		warp "pvp_y_1-1",119,84;
    		end;
    
    	case 2:
    		close2;
    		warp "pvp_y_1-2",119,84;
    		end;
    
    	case 3:
    		close2;
    		warp "pvp_y_1-3",119,84;
    		end;
    
    	case 4:
    		close;
    }
    }
    

    I hope it can help you a lot.

     

    Best regards,

    Garkor

  3. index.php?app=downloads&module=display&section=screenshot&id=3351

    File Name: Add file to guild storage

    File Submitter: Garkor

    File Submitted: 17 Mar 2015

    File Category: Other Web/CP Scripts

    Content Author: Garkor

    Hello guys,

    I've create this page because some one requested it. It's easy to configure but very useful.

    With this page you can add an item to the guild storage of any guild you want.

    You can configure a key which anyone need to access this site.

    You can configure the min. group id which anyone need to add an item to any guild.

    The page check the following:

    - Does the guild exist

    - Does the guild have the item already

    - And last but not least does the user have the right group id to access

    I hope it can help anyone. If you find some bug or issue let me know this ;) If you want to request any else I can help you too.

    Best regards

    Garkor

    //Copyright by Garkor.

    //Dont steal it. Dont name it as yours. Dont remove the copyright.

    //You can change something but you aren't allowed to remove the copyright/watermarks.

    Click here to download this file

    • Upvote 1
  4. If you change this you'll need to add your custom map on the map_index.h too.

     

    Replace:

            { MAP_PRONTERA,    156, 191, 3 }, //  0 = Prontera
    

    with this:

            { MAP_MAINTOWN,    181, 76, 3 }, //  0 = Maintown
    

    And after:

            { MAP_ECLAGE,      110,  39, 3 }, // 35 = Eclage
    

    add this:

            { MAP_PRONTERA,    156, 191, 3 }, //  36 = Prontera
    

    The lines:

            if (strncmpi(map_name, "morroc", 4) == 0) { // Correct town name for 'morocc'
                town = 1;
            }
    

    are only need if your map have more than one name.

    Example: @go maintown, @go main, @go home and @go 0. But you'll doesn't need this.

     

    Best regards,

    Garkor

    • Upvote 1
  5. You cannot create a transparent background. You need to cut out the notice field and load it with your notice.html. Send me your background image(PN) and your config.ini and I can do it for you.

     

    Best regards,

    Garkor

  6. You cannot add new maps with clouds. You need to replace a map with clouds. The maps with clouds are hardcoded in the client.

     

    You just need to replace a mapname in the client. Search for 'gonyrun'.

    5fzjido8.jpg

     

    Best regards,

    Garkor

  7. Hello guys,

     

    I whould like to help one people of this forum and thereforce I've already upload a file. But the file is not approved at the moment. The time to approve one file is very annoying. The file was uploaded 2 days ago and I think it's a little bit stupid. Does it normally or unormally that the time is very large to approve one file?

     

    Best regards,

    Garkor

  8. Hello guys,

     

    I would like to request a source modification. The converter/arrow creation menu shouldn't be show if only one item to choose.

    I'll try it by myself but I'm not really good at source modification.

     

    Best regards,

    Garkor

  9. The items doesn't have an own level or an own exp. I dont know how to make it. what do you thinking about trading this weapon? The exp whould be character bounded. You should ask for a source modification.

     

    Best regards,

    Garkor

  10. If you want to use a npc which can check this. You can add this line before warp to the map:

    if (getmapusers("prontera") >=2){
    mes "Too much players on the map!";
    close;
    }
    

    Or if you want to check the map without using npc. You can try this:

    -	script	PronLimitation	-1,{
    
    OnInit:
    	end;
    
    OnPCLoadMapEvent:
    	if (getmapusers("prontera") >=2 && strcharinfo(3) == "prontera"){
    		mes "The max. player limitation is 2 player.";
    		close2;
    		warp "geffen",11,11;
    		end;
    	}
    }
    prontera	mapflag	loadevent
    

    I hope it can help you.

     

    Best regards,

    Garkor

×
×
  • Create New...