[Help] Hot To Add vip taken to my server and some item

02/10/2010 18:04 [GM]KinG[PM]#1
[Help] HOW To Add vip taken to my server and some item

Warrior potion
paladin potion
mage potion

vip taken

only.


:handsdown::handsdown::handsdown::handsdown::hands down::handsdown:
02/11/2010 15:40 King_Arthur#2
You mean a "Token"? Like Acme has? The token is just a regular item and the NPC checks to see if you have the right amount of tokens and gives the item if you do. Nothing special there.
02/12/2010 02:13 dibiase#3
nah, i know what he means, he means something like this:

the VIP npc checks to see if your account has VIP, if it does you can collect a wage, if not you dont receive anything.

he wants to implement the same type of thing for an item
02/12/2010 16:55 magewarior2#4
the type 503 ? this check's items ... you mean that ?
02/12/2010 22:42 King_Arthur#5
type '5001' param '> 0' checks for any level of VIP.
02/13/2010 12:16 magewarior2#6
Quote:
Originally Posted by King_Arthur View Post
type '5001' param '> 0' checks for any level of VIP.
and a update for newbie's

type '5001' param '== 1' checks for level 1 of VIP.
type '5001' param '== 2' checks for level 2 of VIP.
type '5001' param '== 3' checks for level 3 of VIP.
type '5001' param '== 4' checks for level 4 of VIP.
type '5001' param '== 5' checks for level 5 of VIP.
type '5001' param '== 6' checks for level 6 of VIP.
type '5001' param '== 7' checks for level 7 of VIP.

type '5001' param '> 1' checks VIP higher than lvl 1
type '5001' param '> 2' checks VIP higher than lvl 2
type '5001' param '> 3' checks VIP higher than lvl 3
type '5001' param '> 4' checks VIP higher than lvl 4
type '5001' param '> 5' checks VIP higher than lvl 5
type '5001' param '> 6' checks VIP higher than lvl 6
type '5001' param '> 7' checks VIP higher than lvl 7
02/13/2010 16:29 King_Arthur#7
Quote:
Originally Posted by magewarior2 View Post
and a update for newbie's

type '5001' param '> 1' checks for level 1 of VIP.
type '5001' param '> 2' checks for level 2 of VIP.
type '5001' param '> 3' checks for level 3 of VIP.
type '5001' param '> 4' checks for level 4 of VIP.
type '5001' param '> 5' checks for level 5 of VIP.
type '5001' param '> 6' checks for level 6 of VIP.
type '5001' param '> 7' checks for level 7 of VIP.
ECT ....
Actually you would use '==' not '>' to check for a specific level. For example:

type '5001' param '> 1' would check for any level of VIP above 1. So if you had VIP level 1 you would fail this check.

type '5001' param '== 1' can be used to check for level 1 only. If you had VIP level 2 or higher you would fail this check. You would also fail this check if you do not have VIP (level 0).
02/13/2010 19:15 magewarior2#8
Quote:
Originally Posted by King_Arthur View Post
Actually you would use '==' not '>' to check for a specific level. For example:

type '5001' param '> 1' would check for any level of VIP above 1. So if you had VIP level 1 you would fail this check.

type '5001' param '== 1' can be used to check for level 1 only. If you had VIP level 2 or higher you would fail this check. You would also fail this check if you do not have VIP (level 0).
your right, sorry my fould :) I'll edit my post :bandit:

dint noticed it, next time I'll pay more Atention :p

i did just copy what you writhed xD and changed some things