Jump to content
  • 0

I need help with script vip shop


ragar

Question


  • Group:  Members
  • Topic Count:  4
  • Topics Per Day:  0.00
  • Content Count:  4
  • Reputation:   0
  • Joined:  02/25/14
  • Last Seen:  

I made this script but I want normal users to be able to see the store but not be able to buy how do I modify it?

 

//===== XeroxRO Script =======================================
//= Tienda VIP
//===== Por: XEROX ==========================================
//= Versión: 1.0 ==============================================
prt_in,55,68,3    script    Tienda VIP    757,{
    if (!vip_status(VIP_STATUS_ACTIVE)) {
        mes "Lo siento, solo los usuarios VIP pueden acceder a esta tienda.";
        close;
    }

    mes "[Tienda VIP]";
    mes "Hola Bienvenido a la tienda exclusiva para usuarios VIP. En que puedo ayudarte hoy";

    switch (select("Comprar items:Vender items:Cancelar")) {
    case 1:
        callshop "vip_shop",1;
        end;
    case 2:
        callshop "vip_shop",2;
        end;
    case 3:
        mes "Gracias por visitar nuestra tienda VIP Vuelve pronto";
        close;
    }
}

-    shop    vip_shop    -1,40015:10000,40016:10000,40031:5000,40014:10000,40013:2000000

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

  • Group:  Members
  • Topic Count:  0
  • Topics Per Day:  0
  • Content Count:  132
  • Reputation:   53
  • Joined:  06/02/12
  • Last Seen:  

I duplicated the shop so there's two of the same: "vip_shop" (can buy) and "see_shop" (can't buy). The NPC will open "see_shop" for Non-VIPs.

Spoiler
//===== XeroxRO Script =======================================
//= Tienda VIP
//===== Por: XEROX ==========================================
//= Versión: 1.0 ==============================================
prt_in,55,68,3	script	Tienda VIP	757,{
    mes "[Tienda VIP]";
    mes "Hola Bienvenido a la tienda exclusiva para usuarios VIP. En que puedo ayudarte hoy";

    switch (select("Comprar items:Vender items:Cancelar")) {
    case 1:

    	if (!vip_status(VIP_STATUS_ACTIVE)) {
			clear;
			mes "[Tienda VIP]";
			mes "Lo siento, solo los usuarios VIP pueden comprar en esta tienda.";
			mes "Pero puedes ver los artículos.";
			close2;
			callshop "see_shop",1;
			npcshopattach "see_shop";
			end;
		}

        callshop "vip_shop",1;
        end;
    case 2:
        callshop "vip_shop",2;
        end;
    case 3:
    	clear;
    	mes "[Tienda VIP]";
        mes "Gracias por visitar nuestra tienda VIP Vuelve pronto";
        close;
    }

OnBuyItem:
	mes "[Tienda VIP]";
	mes "Lo siento, solo los usuarios VIP pueden comprar en esta tienda.";
	dispbottom "Solo los usuarios VIP pueden comprar en esta tienda.";
	close;
}

//"vip_shop" for VIPs. "see_shop" for Non-VIPs.
-	shop	vip_shop	-1,40015:10000,40016:10000,40031:5000,40014:10000,40013:2000000 
-	shop	see_shop	-1,40015:10000,40016:10000,40031:5000,40014:10000,40013:2000000 

 

 

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...