simplexjay2 Posted July 26, 2015 Posted July 26, 2015 (edited) i want to make npc that when he detect the player in log in a vip it will automatically set the aura to 16 and but if it's not vip or the vip is expired it will be back the aura to 0 - script aura_atcommand -1,{ OnPCLoginEvent: if(vip_status(0)) atcommand "@aura 0"; } - script aura_atcommand -1,{ OnPCLoginEvent: if(vip_status(1)) atcommand "@aura 16"; } What's wrong with it Edited July 26, 2015 by simplexjay2 Quote
Lelouch vi Britannia Posted July 26, 2015 Posted July 26, 2015 (edited) Try this... - script aura_atcommand -1,{ OnPCLoginEvent: if(vip_status(0)){ atcommand "@aura 0"; end; } } - script aura_atcommand -1,{ OnPCLoginEvent: if(vip_status(1)){ atcommand "@aura 16"; end; } } Edited July 26, 2015 by Lelouch vi Britannia Quote
Question
simplexjay2
i want to make npc that when he detect the player in log in a vip it will automatically set the aura to 16 and but if it's not vip or the vip is expired it will be back the aura to 0
What's wrong with it
1 answer 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.