|
You last visited: Today at 08:56
Advertisement
[Help]How to Make VIP Teleport payment??
Discussion on [Help]How to Make VIP Teleport payment?? within the EO PServer Hosting forum part of the Eudemons Online category.
12/01/2009, 16:00
|
#1
|
elite*gold: 0
Join Date: Aug 2009
Posts: 347
Received Thanks: 114
|
[Help]How to Make VIP Teleport payment??
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
|
#2
|
elite*gold: 100
Join Date: Oct 2008
Posts: 636
Received Thanks: 1,215
|
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
|
#3
|
elite*gold: 0
Join Date: Aug 2009
Posts: 347
Received Thanks: 114
|
Quote:
Originally Posted by Soulerman
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..
|
|
|
 |
Similar Threads
|
Payment
09/12/2010 - WarRock - 5 Replies
Ich wollte eben mal 10 € für das Spiel ausgeben aber ich habe ein Problem.
Ich habe keine Paysafecard deshalb bezahle ich mit Kreditkarte und weil ich ja nicht aus Deutschland bin kann ich ja nicht mit Mastercard oder Vista bezahlen deshalb will ich mal fragen wo kann ich noch bezahlen mit Kreditkarte und wie das geht.
Wäre froh über Antworten
Mfg Final
|
PLZ I NEED HELP ABOUT PAYMENT METHOD
05/30/2010 - Archlord Trading - 12 Replies
i wanna ask something about paypal. is there away to top up my paypal account if i dont got bank account or creditcard?? cozz i cant do it with those ways so if there is another way plz let me know.
|
[Help] how to put payment vip
04/30/2010 - EO PServer Hosting - 5 Replies
On my server payment vip is not working I click on TQ_Baby and choose your payment option and nothing happens.
How do I get?
Thanks!
Regards Corey88
|
[Help] How To make teleport item
07/20/2009 - CO2 Private Server - 3 Replies
Can someone help me how to make my own scroll item or item teleporter on LOTF source? Please help me. Thanks.
|
How to make bot auto teleport?
08/29/2007 - Lineage 2 - 0 Replies
How do i make a bot auto teleport after the char he is following?
|
All times are GMT +1. The time now is 09:00.
|
|