Jump to content
  • 0

help


Help-Help

Question


  • Group:  Members
  • Topic Count:  42
  • Topics Per Day:  0.01
  • Content Count:  108
  • Reputation:   2
  • Joined:  03/16/13
  • Last Seen:  

gonryun,154,111,5	script	Convert NPC	108,{

mes "I can exchange your Emblem Of the Sun God to Cash Points.";
next;
mes "How many would you like to exchange?";
menu "50 ESG",gold_50,"100 ESG",gold_100,"500 ESG",gold_500,"1000 ESG",gold_1k,"5000 ESG",gold_5k,"None",end1;

end1:
next;
mes "See you again.";
close;

gold_50:
if (countitem(19600) < 50) goto end2;
next;
mes "Here you go.";
set #CASHPOINTS,#CASHPOINTS+50;
delitem 19600,50;
mes "Thank you. Come again.";
close;

gold_100:
if (countitem(19600) < 100) goto end2;
next;
mes "Here you go.";
set #CASHPOINTS,#CASHPOINTS+100;
delitem 19600,100;
mes "Thank you. Come again.";
close;

gold_500:
if (countitem(19600) < 500) goto end2;
next;
mes "Here you go.";
set #CASHPOINTS,#CASHPOINTS+500;
delitem 19600,500;
mes "Thank you. Come again.";
close;

gold_1k:
if (countitem(19600) < 1000) goto end2;
next;
mes "Here you go.";
set #CASHPOINTS,#CASHPOINTS+1000;
delitem 19600,1000;
mes "Thank you. Come again.";
close;

gold_5k:
if (countitem(19600) < 5000) goto end2;
next;
mes "Here you go.";
set #CASHPOINTS,#CASHPOINTS+5000;
delitem 19600,5000;
mes "Thank you. Come again.";
close;

end2:
next;
mes "Sorry, you don't have enough Emblems for this transaction.";
close;
}

how can i put like broadacst of total of your points but only see the broadcast of your total cash no one can see it

Link to comment
Share on other sites

3 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  48
  • Topics Per Day:  0.01
  • Content Count:  1125
  • Reputation:   236
  • Joined:  07/30/12
  • Last Seen:  

dispbottom "You currently have "+ #CASHPOINTS +" Points.";

or

announce "You currently have "+ #CASHPOINTS +" Points.",bc_blue|bc_self;
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  42
  • Topics Per Day:  0.01
  • Content Count:  108
  • Reputation:   2
  • Joined:  03/16/13
  • Last Seen:  

where i need to put this?

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  154
  • Topics Per Day:  0.03
  • Content Count:  493
  • Reputation:   46
  • Joined:  01/24/12
  • Last Seen:  


gonryun,154,111,5 script Convert NPC 108,{

mes "I can exchange your Emblem Of the Sun God to Cash Points.";

next;

mes "How many would you like to exchange?";

menu "50 ESG",gold_50,"100 ESG",gold_100,"500 ESG",gold_500,"1000 ESG",gold_1k,"5000 ESG",gold_5k,"None",end1;

end1:

next;

mes "See you again.";

close;

gold_50:

if (countitem(19600) < 50) goto end2;

next;

mes "Here you go.";

set #CASHPOINTS,#CASHPOINTS+50;

delitem 19600,50;

mes "Thank you. Come again.";

close;

gold_100:

if (countitem(19600) < 100) goto end2;

next;

mes "Here you go.";

set #CASHPOINTS,#CASHPOINTS+100;

delitem 19600,100;

mes "Thank you. Come again.";

close;

gold_500:

if (countitem(19600) < 500) goto end2;

next;

mes "Here you go.";

set #CASHPOINTS,#CASHPOINTS+500;

delitem 19600,500;

mes "Thank you. Come again.";

close;

gold_1k:

if (countitem(19600) < 1000) goto end2;

next;

mes "Here you go.";

set #CASHPOINTS,#CASHPOINTS+1000;

delitem 19600,1000;

mes "Thank you. Come again.";

close;

gold_5k:

if (countitem(19600) < 5000) goto end2;

next;

mes "Here you go.";

set #CASHPOINTS,#CASHPOINTS+5000;

delitem 19600,5000;

dispbottom "You currently have "+ #CASHPOINTS +" Points."; <<<PUT IT HERE

mes "Thank you. Come again.";

close;

end2:

next;

mes "Sorry, you don't have enough Emblems for this transaction.";

close;

}

Edited by Emistry
use [code]
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...