ragar Posted March 24, 2023 Group: Members Topic Count: 4 Topics Per Day: 0.00 Content Count: 4 Reputation: 0 Joined: 02/25/14 Last Seen: August 26, 2024 Share Posted March 24, 2023 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 Quote Link to comment Share on other sites More sharing options...
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
0 answers 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.