The forums will be going offline for an extended maintenance period at 1400hrs GMT on 19th June 2025. The number of hours for this downtime is intentionally not advertised due to the nature of these upgrades.
×
- 0
I need help with script vip shop
-
Recently Browsing 0 members
- No registered users viewing this page.
Question
ragar
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
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.