Jump to content

Dhall

Members
  • Posts

    62
  • Joined

  • Last visited

  • Days Won

    2

Posts posted by Dhall

  1. Hi!

    I'm talkin about this script https://github.com/rathena/rathena/blob/master/npc/re/merchants/coin_exchange.txt

     

    Problem:

    Every single time I try to enchant a str, int, dex...glove it fails, i never get the encanted glove.

     

     

    There is an error with this?

    // Eclage
    //============================================================
    ecl_in01,66,95,3	script	Armor Merchant Naphara#e::glove	436,{
    	if (!checkweight(1301,3)) {
    		mes "- Stop Here!! -";
    		mes "- You have too many items. -";
    		mes "- You cannot carry any more items. -";
    		mes "- Lighten your load and -";
    		mes "- try again. -";
    		close;
    	}
    	mes "[Armor Merchant]";
    	mes "Hello, this is Naphara's store, a place of high class goods.";
    	mes "What would you need?";
    	next;
    	.@choice = select("Str Glove:Int Glove:Agi Glove:Vit Glove:Dex Glove:Luk Glove") -1;
    	mes "[Armor Merchant]";
    	switch(.@choice) {
    	case 0: // Str Glove
    		mes "^3131FFStr Glove^000000";
    		mes "^3131FFMHP + 100, MSP + 20^000000";
    		mes "^3131FFATK+1 increases for every STR+10^000000";
    		mes "^3131FFATK +1% added above STR 110^000000";
    		break;
    	case 1:
    		mes "^3131FFInt Glove^000000";
    		mes "^3131FFMHP + 100, MSP + 20^000000";
    		mes "^3131FFMATK+1 increases for every INT+10^000000";
    		mes "^3131FFMATK +1% added above INT 110^000000";
    		break;
    	case 2:
    		mes "^3131FFAgi Glove^000000";
    		mes "^3131FFMHP + 100, MSP + 20^000000";
    		mes "^3131FFFLEE+1 increases for every AGI+10^000000";
    		mes "^3131FFComplete Flee +1 added above AGI 110^000000";
    		break;
    	case 3:
    		mes "^3131FFVit Glove^000000";
    		mes "^3131FFMHP + 100, MSP + 20^000000";
    		mes "^3131FFMHP+50 for every VIT+10^000000";
    		mes "^3131FFMHP+1% added above VIT 110^000000";
    		break;
    	case 4:
    		mes "^3131FFDex Glove^000000";
    		mes "^3131FFMHP + 100, MSP + 20^000000";
    		mes "^3131FFHIT+1 increases for every DEX+10^000000";
    		mes "^3131FFRanged attack power +1% added above DEX 110^000000";
    		break;
    	case 5:
    		mes "^3131FFLuk Glove^000000";
    		mes "^3131FFMHP + 100, MSP + 20^000000";
    		mes "^3131FFCRI+1 increases for every LUK+10^000000";
    		mes "^3131FFCritical damage +1% added above LUK 110^000000";
    		break;
    	}
    	mes "^3131FFRequired Level: 100^000000";
    	mes "^3131FFSlot: 0^000000";
    	mes "^3131FFWeight: 10^000000";
    	mes "are the characteristic options.";
    	next;
    	mes "[Armor Merchant]";
    	mes "It costs 10 Splendide Coins.";
    	mes "Would you like to buy it?";
    	next;
    	if (select("Buy it.:Don't buy it.")==1) {
    		if (countitem(6081) < 10) {
    			mes "[Armor Merchant]";
    			mes "It seems like you don't have enough coins.";
    			close;
    		}
    		delitem 6081,10; //Splendide_Coin
    		getitem (.@choice+2917),1;
    		mes "[Armor Merchant]";
    		mes "Great, it's yours. Thank you.";
    	}
    	close;
    }
    

    Thanks in advice!

  2. Hi, quick question  /??

     

    This are 4 stores placed in prontera, one script. Just wondering how can I duplicate this in different cirys?

    prontera,164,141,2 shop Ammunition 880,1766:2,1755:2,1750:1,1754:2,1761:2,1773:3,1752:2,1760:2,1759:2,1772:2,1757:3,1770:2,1769:3,1765:2,1763:3,1762:3,1767:3,1764:3,1751:2,1768:3,1753:3,1756:3,1758:3,1771:5,13200:1,13202:3,13201:3,13206:3,13203:3,13207:3,13204:3,13205:3,13252:5,13254:5,13251:5,13253:5,13250:5,13256:5,13259:5,13258:5,13255:5,13257:5
    prontera,164,143,2 shop Alchemist Dealer 880,715:600,716:600,717:600,1025:200,7136:2500,7135:2500,7137:500,7138:500,7139:500
    prontera,164,145,2 shop Street Dealer 880,678:5000,505:-1,506:40,610:4000,545:150,546:600,547:1650
    prontera,164,147,2 shop Sheepy Gonzales 895,12028:1000,12262:500,12016:750
    
     

    Do I have to put "Ammunition#1", "Alchemist Dealer#1"....

    and then 

    payon,34,56,4      duplicate    Ammunition#2 880,1766:2,1755:2......   

    payon,34,56,4     duplicate    Alchemist Dealer#2 880,715:600,716:600.....

     

    Thanks in advice

  3. Hi, i really sorry about this, I know there is a lot of topics about how to set up flux cp, but everytime I try to set it up on my web hosting there is an error. Here´s a picture of the critical error.

     

     

    J64Evd.png

    And this is the guide I use to set it up.

    https://rathena.org/board/topic/67109-flux-control-panel-setup-with-screens/

     

    I downloaded flux cp from here

    https://github.com/rathena/FluxCP

     

    I don't know if this is useful, but I have 2 different IP. one for the webhosting and one for the VPS.

    and 3 different passwords: webhosting, VPS and SQL Tables

     

    Thanks in advice :)

×
×
  • Create New...