Request Point Checker NPC Script

hadiesyafiq

New member
Messages
160
Points
0
Age
35
Location
Malaysia
Github
hadiesyafiq
Emulator
hi all 

my server use serveral custom point for reward

here some

#TIMEPOINT

#VOTEPOINT

#SHAREPOINT

#PVPPOINT

#MISSONPOINT

#EVENTPOINT

#MVPPOINT

#CASHPOINT

How to make 1 NPC to check how many point we have on that character...

example

[POINT CHECKER]

You have 

10 timepoint

5 votepoint

3 sharepoint

0 pvppoint.......

thanks for helping

 
Code:
mes "You currently have TIMEPOINT " + #TIMEPOINT;
mes "You currently have VOTEPOINT " + #VOTEPOINT;
mes "You currently have SHAREPOINT " + #SHAREPOINT;
mes "You currently have PVPPOINT " + #PVPPOINT;
mes "You currently have MISSONPOINT " + #MISSONPOINT;
mes "You currently have EVENTPOINT " + #EVENTPOINT;
mes "You currently have MVPPOINT " + #MVPPOINT;
mes "You currently have CASHPOINT " + #CASHPOINT;
 
Back
Top