Jump to content
  • 0

Need the stat of VIP users


Diana

Question


  • Group:  Members
  • Topic Count:  83
  • Topics Per Day:  0.03
  • Content Count:  188
  • Reputation:   3
  • Joined:  12/17/16
  • Last Seen:  

Hello , If I want to check with [If statment] if the user has VIP or not  to give a custom buff for them, There's a statement for the VIP?  like 

if(vipuser){
        specialeffect2 EF_INCAGILITY;
        sc_start SC_INCREASEAGI,240000,10;
        specialeffect2 EF_BLESSING;
        sc_start SC_BLESSING,240000,10;
}

 

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

  • Group:  Members
  • Topic Count:  13
  • Topics Per Day:  0.00
  • Content Count:  255
  • Reputation:   232
  • Joined:  07/24/13
  • Last Seen:  

29 minutes ago, Diana said:

Hello , If I want to check with [If statment] if the user has VIP or not  to give a custom buff for them, There's a statement for the VIP?  like 


if(vipuser){
        specialeffect2 EF_INCAGILITY;
        sc_start SC_INCREASEAGI,240000,10;
        specialeffect2 EF_BLESSING;
        sc_start SC_BLESSING,240000,10;
}

 

Hello, you can use vip_status(1)

if (vip_status(1)){
        specialeffect2 EF_INCAGILITY;
        sc_start SC_INCREASEAGI,240000,10;
        specialeffect2 EF_BLESSING;
        sc_start SC_BLESSING,240000,10;
}

 

Edited by Balfear
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...