simplexjay2 Posted July 26, 2015 Group: Members Topic Count: 56 Topics Per Day: 0.01 Content Count: 224 Reputation: 4 Joined: 02/09/12 Last Seen: April 20, 2024 Share 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 Link to comment Share on other sites More sharing options...
Lelouch vi Britannia Posted July 26, 2015 Group: Members Topic Count: 45 Topics Per Day: 0.01 Content Count: 715 Reputation: 84 Joined: 01/05/12 Last Seen: April 10, 2023 Share 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 Link to comment Share on other sites More sharing options...
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
Link to comment
Share on other sites
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.