Jump to content
  • 0

R>Item Preview


shironaito22

Question


  • Group:  Members
  • Topic Count:  13
  • Topics Per Day:  0.00
  • Content Count:  28
  • Reputation:   0
  • Joined:  02/14/18
  • Last Seen:  

Hi goodevening ..I just want to request an "Item Preview option" for this existing Script of master Emistry ? thanks for you help 

 

 

//=========================================================================

// Settings :
//    -    Only required to edit the ShopSetting() Function
//            Notes : You may also add / remove Menu ( If any ) 
//    -    Shop Currency can be either ItemID or Variable Name, but must write within Quotation Marks ( "" )
//            Ex. of Variable.    ->    Zeny , #CASHPOINTS , #KAFRAPOINTS , CustomVariable , #CustomVariable
//    -    ERROR Message are used to show Invalid Settings in your NPC.


// Leave this alone...
-    shop    Emistry_Shop    -1,512:100


prt_in,38,107,6    script    [Donation] Shop    757,{
function ShopSettings;
function ValidateCost;
function CurrencyInfo;
function ClearData;
function ValueConvert;
function ErrorNotice;

mes "Each Shop from the Menu may purchase using ^FF0000Archangeling Coin^000000.";
mes "^00FF00____________________________^000000";
mes "So,Which shop you would like to look at it";
next;
// Menu Selection
select("Donate Equipments","Donate Costumes","Donate Usable&ETC");

ClearData();
ShopSettings( @menu );
npcshopitem "Emistry_Shop",512,100;
npcshopdelitem "Emistry_Shop",512;
for(set .@i,0; .@i < getarraysize( @ItemLists ); set .@i,.@i+1)
    npcshopadditem "Emistry_Shop",@ItemLists[.@i],@ItemCost[.@i];
mes "Okay...wait awhile";
mes "^00FF00____________________________^000000";
CurrencyInfo( @Currency$ );
mes "^00FF00____________________________^000000";
callshop "Emistry_Shop",1;
npcshopattach "Emistry_Shop";
end;


function    ShopSettings    {
    switch( getarg(0) ){
        Case 1:
            // Currency [ Item ID / Variable Name ]
            set @Currency$,"29327";
            // Item ID Lists
            setarray @ItemLists[0],5374,5518,1228,18539,1615,5377,2375,2374;
            // Item Price
            setarray @ItemCost[0],300,300,250,300,300,150,250,250;
            break;
        Case 2:
            // Currency [ Item ID / Variable Name ]
            set @Currency$,"29327";
            // Item ID Lists
            setarray @ItemLists[0],2306,2302,2303,2304,2305,2301;
            // Item Price
            setarray @ItemCost[0],2,2,3,4,5,6;
            break;
        Case 3:
            // Currency [ Item ID / Variable Name ]
            set @Currency$,"29327";
            // Item ID Lists
            setarray @ItemLists[0],6233,6229,6232,6228,7620,7619;
            // Item Price
            setarray @ItemCost[0],125,125,200,200,50,50;
            break;
        // Case 4,5,6.....etc...
        default:
            ErrorNotice( "Invalid Menu Selection for Menu "+@menu+"." );
            close;
    }
    
    
if( @Currency$ == "" )
    ErrorNotice( "Invalid Currency Setting in Menu "+@menu+" ." );
if( getarraysize( @ItemCost ) != getarraysize( @ItemLists ) || getarraysize( @ItemLists ) != getarraysize( @ItemCost ) )
    ErrorNotice( "Missing or Extra Value of Item or Cost Settings in Menu "+@menu+" ." );
return;
}

function    ErrorNotice    {
    mes "^FF0000ERROR^000000 - "+getarg(0);
    mes "^00FF00____________________________^000000";
    mes "Inform this Message to ^0000FFGame Staffs^000000 immediately !";
    close;
}

function    CurrencyInfo    {
    if( getitemname( atoi( getarg(0) ) ) != "null" ){
        mes "Item Currency : ^FF0000"+getitemname( atoi( getarg(0) ) )+"^000000";
        mes "Available Amount : ^0000FF"+ValueConvert( countitem( atoi( getarg(0) ) ) )+"^000000";
    }else if( getitemname( atoi( getarg(0) ) ) == "null" ){
        mes "Variable Currency : ^FF0000"+getarg(0)+"^000000";
        mes "Available Amount : ^0000FF"+ValueConvert( getd( getarg(0) ) )+"^000000";
    }
return;
}

function    ValidateCost    {
    if( getitemname( atoi( getarg(0) ) ) != "null" ){
        if( countitem( atoi( getarg(0) ) ) < getarg(1) ) return 1;
    }else{
        if( getd( getarg(0) ) < getarg(1) ) return 1;
    }
return 0;
}

function ClearData    {
    set @Currency$,"";
    set @TotalCost,0;
    deletearray @bought_nameid[0],getarraysize( @bought_nameid );
    deletearray @bought_quantity[0],getarraysize( @bought_quantity );
    deletearray @ItemLists[0],getarraysize( @ItemLists );
    deletearray @ItemCost[0],getarraysize( @ItemCost );
return;
}

function    ValueConvert    {
    set .@num, atoi(""+getarg(0));
    if ( .@num == 0 || .@num >= 2147483647 ) return getarg(0);
    set .@l, getstrlen(""+.@num);
    for ( set .@i,0; .@i < .@l; set .@i, .@i + 1 ) {
        set .@num$, .@num % pow(10,.@i+1) / pow(10,.@i) + .@num$;
            if ( (.@i+1) % 3 == 0 && .@i+1 != .@l ) set .@num$, ","+ .@num$;
    }
    return .@num$;
}
OnBuyItem:

    ShopSettings( @menu );
    for(set @i,0; @i < getarraysize( @bought_nameid ); set @i,@i+1)
        for(set @j,0; @j < getarraysize( @ItemLists ); set @j,@j+1)
            if( @ItemLists[@j] == @bought_nameid[@i] )
            set @TotalCost,@TotalCost + ( @ItemCost[@j] * @bought_quantity[@i] );

    mes "^FF0000       BILLING LIST^000000";
    mes "^00FF00____________________________^000000";
    for( set @i,0; @i < getarraysize( @bought_nameid ); set @i,@i+1 )
            mes "^FF0000"+@bought_quantity[@i]+" x ^0000FF"+getitemname( @bought_nameid[@i] )+"^000000";
    mes "^00FF00____________________________^000000";

    if( getitemname( atoi( @Currency$ ) ) != "null" )
        mes "Total Cost : ^0000FF"+ValueConvert( @TotalCost )+" x "+getitemname( atoi( @Currency$ ) )+"^000000";
    else if( getitemname( atoi( @Currency$ ) ) == "null" ){
        mes "Total Cost : ^0000FF"+ValueConvert( @TotalCost )+" "+@Currency$+"^000000";

    }

    
    mes "^00FF00____________________________^000000";
    if( ValidateCost( @Currency$,@TotalCost ) ){
        if( getitemname( atoi( @Currency$ ) ) != "null" )
            mes "[ ^FF0000X^000000 ] Insufficient ^0000FF"+getitemname( atoi( @Currency$ ) )+"^000000";
        else{
            mes "[ ^FF0000X^000000 ] Insufficient ^0000FF"+@Currency$+"^000000";
        }
    }else{
        if( select( "^0000FFPurchase^000000:Cancel" ) == 1 ){
            if( getitemname( atoi( @Currency$ ) ) != "null" )
                delitem atoi( @Currency$ ),@TotalCost;
            else{
                set getd( @Currency$ ),getd( @Currency$ ) - @TotalCost;
            }
            for(set @i,0; @i < getarraysize( @bought_nameid ); set @i,@i+1)
                getitem @bought_nameid[@i],@bought_quantity[@i];
            message strcharinfo(0),"Purchased "+getarraysize( @bought_nameid )+" Items.";
            mes "Thank you for shopping.";
        }
    }
ClearData();
close;

}

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

  • Group:  Members
  • Topic Count:  28
  • Topics Per Day:  0.01
  • Content Count:  234
  • Reputation:   115
  • Joined:  02/24/15
  • Last Seen:  

Like this?

//===== rAthena Script ================================
//= Costume Preview
//===== By: ==================================================
//= JETH-RO
//===== Last Updated: ========================================
//= 03-30-2017
//===== Description: =========================================
//= Costume Preview?
//============================================================

alexandria,165,177,4	script	Costume Preview	509,{
setarray @look[0], getlook(LOOK_HEAD_BOTTOM), getlook(LOOK_HEAD_TOP), getlook(LOOK_HEAD_MID), getlook(LOOK_ROBE);
@i = 0;
M_REPEAT:
	@equip = getiteminfo(.items[@i], 5);
	@view = getiteminfo(.items[@i], 11);


	if(@equip != -1 && @view > 0) {
			changelook LOOK_HEAD_BOTTOM, @look[0];
			changelook LOOK_HEAD_TOP, @look[1];
			changelook LOOK_HEAD_MID, @look[2];
			changelook LOOK_ROBE, @look[3];
			deltimer strnpcinfo(0)+"::OnEnd";
			if ((@equip & 1) || (@equip & 4096)) changelook LOOK_HEAD_BOTTOM, @view;
			else if ((@equip & 256) || (@equip & 1024)) changelook LOOK_HEAD_TOP, @view;
			else if ((@equip & 512) || (@equip & 2048)) changelook LOOK_HEAD_MID, @view;
			else if ((@equip & 4) || (@equip & 8192)) changelook LOOK_ROBE, @view;
			addtimer 5000, strnpcinfo(0)+"::OnEnd";
	}
	
	@next = @i == getarraysize(.items)-1 ? 0 : @i+1;
	@prev = @i == 0 ? getarraysize(.items)-1 : @i-1;
	mes "[ ^FF0000Costume Preview^000000 ]";
	mes "Item Name: ^6666ff"+getitemname(.items[@i])+"^000000";
	mes "Item ID: "+.items[@i];
	
	menu "Next [ ^6666ff"+getitemname(.items[@next])+" ^000000]",M_NEXT,"Previous [ ^6666ff"+getitemname(.items[@prev])+"^000000 ]",M_PREVIOUS,"Random",M_RANDOM;	
	
	end;

M_NEXT:
	next;
	@i = @next;
	goto M_REPEAT;
	end;

M_PREVIOUS:
	next;
	@i = @prev;
	goto M_REPEAT;
	end;

M_RANDOM:
	next;
	@i = rand(getarraysize(.items));
	goto M_REPEAT;
	end;


OnEnd:
	changelook LOOK_HEAD_BOTTOM, @look[0];
	changelook LOOK_HEAD_TOP, @look[1];
	changelook LOOK_HEAD_MID, @look[2];
	changelook LOOK_ROBE, @look[3];
	end;
	

OnInit:
setarray .items[0],
31265,
31599,
31284,
31285,
31286,
31287,
31288,
31289,
31433,
31434,
31435,
31436,
31437,
31460,
31440,
31441,
31442,
31443,
31444,
31445,
31446,
31447,
31448,
31449,
31450,
31451,
31452,
31453,
31454,
31455,
31458,
31459,
31462,
31466,
31467;
end;
	
}

 

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  13
  • Topics Per Day:  0.00
  • Content Count:  28
  • Reputation:   0
  • Joined:  02/14/18
  • Last Seen:  

9 hours ago, maken06 said:

Like this?


//===== rAthena Script ================================
//= Costume Preview
//===== By: ==================================================
//= JETH-RO
//===== Last Updated: ========================================
//= 03-30-2017
//===== Description: =========================================
//= Costume Preview?
//============================================================

alexandria,165,177,4	script	Costume Preview	509,{
setarray @look[0], getlook(LOOK_HEAD_BOTTOM), getlook(LOOK_HEAD_TOP), getlook(LOOK_HEAD_MID), getlook(LOOK_ROBE);
@i = 0;
M_REPEAT:
	@equip = getiteminfo(.items[@i], 5);
	@view = getiteminfo(.items[@i], 11);


	if(@equip != -1 && @view > 0) {
			changelook LOOK_HEAD_BOTTOM, @look[0];
			changelook LOOK_HEAD_TOP, @look[1];
			changelook LOOK_HEAD_MID, @look[2];
			changelook LOOK_ROBE, @look[3];
			deltimer strnpcinfo(0)+"::OnEnd";
			if ((@equip & 1) || (@equip & 4096)) changelook LOOK_HEAD_BOTTOM, @view;
			else if ((@equip & 256) || (@equip & 1024)) changelook LOOK_HEAD_TOP, @view;
			else if ((@equip & 512) || (@equip & 2048)) changelook LOOK_HEAD_MID, @view;
			else if ((@equip & 4) || (@equip & 8192)) changelook LOOK_ROBE, @view;
			addtimer 5000, strnpcinfo(0)+"::OnEnd";
	}
	
	@next = @i == getarraysize(.items)-1 ? 0 : @i+1;
	@prev = @i == 0 ? getarraysize(.items)-1 : @i-1;
	mes "[ ^FF0000Costume Preview^000000 ]";
	mes "Item Name: ^6666ff"+getitemname(.items[@i])+"^000000";
	mes "Item ID: "+.items[@i];
	
	menu "Next [ ^6666ff"+getitemname(.items[@next])+" ^000000]",M_NEXT,"Previous [ ^6666ff"+getitemname(.items[@prev])+"^000000 ]",M_PREVIOUS,"Random",M_RANDOM;	
	
	end;

M_NEXT:
	next;
	@i = @next;
	goto M_REPEAT;
	end;

M_PREVIOUS:
	next;
	@i = @prev;
	goto M_REPEAT;
	end;

M_RANDOM:
	next;
	@i = rand(getarraysize(.items));
	goto M_REPEAT;
	end;


OnEnd:
	changelook LOOK_HEAD_BOTTOM, @look[0];
	changelook LOOK_HEAD_TOP, @look[1];
	changelook LOOK_HEAD_MID, @look[2];
	changelook LOOK_ROBE, @look[3];
	end;
	

OnInit:
setarray .items[0],
31265,
31599,
31284,
31285,
31286,
31287,
31288,
31289,
31433,
31434,
31435,
31436,
31437,
31460,
31440,
31441,
31442,
31443,
31444,
31445,
31446,
31447,
31448,
31449,
31450,
31451,
31452,
31453,
31454,
31455,
31458,
31459,
31462,
31466,
31467;
end;
	
}

 

thanks for your response ..I think I can use It also ..But if its possible to Windowshop + Preview it'll be nice 

Link to comment
Share on other sites

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.   Paste as plain text instead

  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.

×
×
  • Create New...