[Help]How to Make VIP Teleport payment??

12/01/2009 16:00 matrix89#1
I have find the script I was VIP Teleport ... but when I enter free only ..
who have scripts to make VIP Teleport pay with ep..

Code:
INSERT INTO `cq_action` VALUES ('5991100', '5991101', '0000', '0101', '0', 'Hello!~I\'m~the~VIP~Teleporter!~and~I~can~Teleport~you~to~any~of~these~VIP~Locations!');
INSERT INTO `cq_action` VALUES ('5991101', '5991102', '0000', '0102', '0', 'Take~me~to~the~VIP~4~Map. 5991106');
INSERT INTO `cq_action` VALUES ('5991102', '5991103', '0000', '0102', '0', 'Take~me~to~the~VIP~5~Map. 5991110');
INSERT INTO `cq_action` VALUES ('5991103', '5991104', '0000', '0102', '0', 'Take~me~to~the~VIP~6~Map. 5991114');
INSERT INTO `cq_action` VALUES ('5991104', '5991105', '0000', '0102', '0', 'Take~me~to~the~VIP~7~Map. 5991118');
INSERT INTO `cq_action` VALUES ('5991105', '4000034', '0000', '0102', '0', 'Nevermind. 0');
INSERT INTO `cq_action` VALUES ('5991106', '5991107', '5991109', '5001', '0', ' < 4');
INSERT INTO `cq_action` VALUES ('5991107', '5991108', '0000', '0101', '0', 'Your~Vip~is~lower~then~Level~4.~You~cannot~go~to~this~VIP~map!');
INSERT INTO `cq_action` VALUES ('5991108', '4000034', '0000', '0102', '0', 'I\'m~Sorry. 0');
INSERT INTO `cq_action` VALUES ('5991109', '0000', '0000', '1003', '0', '8900 72 22 1');
INSERT INTO `cq_action` VALUES ('5991110', '5991111', '5991113', '5001', '0', ' < 5');
INSERT INTO `cq_action` VALUES ('5991111', '5991112', '0000', '0101', '0', 'Your~Vip~is~lower~then~Level~5.~You~cannot~go~to~this~VIP~map!');
INSERT INTO `cq_action` VALUES ('5991112', '4000034', '0000', '0102', '0', 'I\'m~Sorry. 0');
INSERT INTO `cq_action` VALUES ('5991113', '0000', '0000', '1003', '0', '1902 80 23 1');
INSERT INTO `cq_action` VALUES ('5991114', '5991115', '5991117', '5001', '0', ' < 6');
INSERT INTO `cq_action` VALUES ('5991115', '5991116', '0000', '0101', '0', 'Your~Vip~is~lower~then~Level~6.~You~cannot~go~to~this~VIP~map!');
INSERT INTO `cq_action` VALUES ('5991116', '4000034', '0000', '0102', '0', 'I\'m~Sorry. 0');
INSERT INTO `cq_action` VALUES ('5991117', '0000', '0000', '1003', '0', '1917 107 98 1');
INSERT INTO `cq_action` VALUES ('5991118', '5991119', '5991121', '5001', '0', ' < 7');
INSERT INTO `cq_action` VALUES ('5991119', '5991120', '0000', '0101', '0', 'Your~Vip~is~lower~then~Level~7.~You~cannot~go~to~this~VIP~map!');
INSERT INTO `cq_action` VALUES ('5991120', '4000034', '0000', '0102', '0', 'I\'m~Sorry. 0');
INSERT INTO `cq_action` VALUES ('5991121', '0000', '0000', '1003', '0', '1918 108 97 1');
and how to make VIP teleport pay with ep??
12/01/2009 16:08 SoulNecturn#2
well this is an example of mine actions I made some time ago...

will just paste it but you can use it as an example ;)

Code:
INSERT INTO `cq_action` (`id`, `id_next`, `id_nextfail`, `type`, `data`, `param`) VALUES
(25545, 25540, 25546, 5001, 0, ' > 6'),
(25540, 25521, 25541, 1001, 0, 'level < 255'),
(25541, 25523, 25542, 1001, 0, 'e_money < 50000'),
(25542, 25543, 0000, 1001, 0, 'e_money += -50000'),
(25543, 0000, 25544, 1107, 0, '11111 579 583'),
(25544, 0000, 0000, 1003, 0, '11111 579 583'),
(25521, 0000, 0000, 0126, 0, 'You~are~not~level~255!'),
(25523, 0000, 0000, 0126, 0, 'You~dont~have~the~50k~EP!'),
(25546, 0000, 0000, 0126, 0, 'You~are~not~VIP~lvl~7!');
Regards
12/01/2009 16:19 matrix89#3
Quote:
Originally Posted by Soulerman View Post
well this is an example of mine actions I made some time ago...

will just paste it but you can use it as an example ;)

Code:
INSERT INTO `cq_action` (`id`, `id_next`, `id_nextfail`, `type`, `data`, `param`) VALUES
(25545, 25540, 25546, 5001, 0, ' > 6'),
(25540, 25521, 25541, 1001, 0, 'level < 255'),
(25541, 25523, 25542, 1001, 0, 'e_money < 50000'),
(25542, 25543, 0000, 1001, 0, 'e_money += -50000'),
(25543, 0000, 25544, 1107, 0, '11111 579 583'),
(25544, 0000, 0000, 1003, 0, '11111 579 583'),
(25521, 0000, 0000, 0126, 0, 'You~are~not~level~255!'),
(25523, 0000, 0000, 0126, 0, 'You~dont~have~the~50k~EP!'),
(25546, 0000, 0000, 0126, 0, 'You~are~not~VIP~lvl~7!');
Regards
owh..look like a good script
thanx soul..let me try it..:D