Jump to content
  • 0

Hello please read


Question

Posted (edited)

May i ask can you edit this

8 Event_Points = 1 Event Token

example you put 10 Event Token then your Event Points is only 50 goto sorry you dont have enought Event Points

when you have enought Event Points like 100Event Points. then you input 10 Event Token.. automatically devide the Event Points to 8

so 10Event Token x 8 Event Points = 80 Event Points so you have 20 Event Points Left

like i said every 1 Token automatically cost of 8 Event Points

i have wrote simple script but.. 1 Event Point = 1 item..

so i want to make this 8 Event Point = 1 item

mes "Please input the number of ";
	mes "Please input your EVENT_POINTS";
	next;
	input .@t;
	if( #EVENT_POINTS >.@t ) goto getreward;
	close;

getreward:
	set #EVENT_POINTS, #EVENT_POINTS - .@t;
	getitem 30000,.@t;
	close;

sorry for my bad english..

i cant speak english property because on my main language

itchimo estrenio

Edited by XkAcY-

4 answers to this question

Recommended Posts

Posted
mes "Available Amount : 0 ~ "+( #EVENT_POINTS / 8 );
input .@Amount,0,( #EVENT_POINTS / 8 );
if( .@Amount ){
set #EVENT_POINTS,#EVENT_POINTS - ( .@Amount * 8 );
getitem 30000,.@Amount;
}
close;

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.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...