|
You last visited: Today at 08:56
Advertisement
how to make players began with vip ....
Discussion on how to make players began with vip .... within the EO PServer Hosting forum part of the Eudemons Online category.
09/17/2010, 10:44
|
#1
|
elite*gold: 0
Join Date: Aug 2010
Posts: 57
Received Thanks: 23
|
how to make players began with vip ....
how can i make players began with vip 3 and 100 k pp and level 50
|
|
|
09/17/2010, 10:52
|
#2
|
elite*gold: 246
Join Date: Jan 2008
Posts: 1,712
Received Thanks: 896
|
Quote:
Originally Posted by M.KinG
how can i make players began with vip 3
|
Edit your account table design to set the default value for 'vip' to three.
Quote:
Originally Posted by M.KinG
and 100 k pp and level 50
|
First way I can think of would be to create a noobie gift that awards 100k pp and levels up any player between 1-49 to level 50. You of course would want to make this newbie gift untradeable/undropable.
|
|
|
09/17/2010, 11:00
|
#3
|
elite*gold: 0
Join Date: Sep 2010
Posts: 340
Received Thanks: 201
|
king arthur..can u show..this is mine:
Code:
`id` int(4) unsigned zerofill NOT NULL AUTO_INCREMENT,
`name` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '',
`password` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '',
`type` int(4) unsigned NOT NULL DEFAULT '0',
`point` int(4) DEFAULT '0',
`pointtime` int(4) unsigned zerofill NOT NULL DEFAULT '20020318',
`online` int(4) unsigned zerofill NOT NULL DEFAULT '0000',
`reg_date` datetime DEFAULT NULL,
`licence` int(4) unsigned DEFAULT '0',
`reg_flag` bigint(12) unsigned DEFAULT '3',
`netbar_ip` varchar(15) DEFAULT '127.0.0.1',
`ip_mask` varchar(15) DEFAULT '255.255.255.255',
`add_type` smallint(1) unsigned zerofill NOT NULL DEFAULT '0',
`VIP` int(4) unsigned NOT NULL DEFAULT '4',
`offline` int(4) DEFAULT NULL,
`pwd` varchar(32) DEFAULT NULL,
`idnum` varchar(20) DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `index_name_pass` (`name`,`password`),
UNIQUE KEY `index_username` (`name`),
KEY `index_type` (`type`),
KEY `index_regtype` (`reg_flag`),
KEY `index_isp` (`type`,`netbar_ip`),
KEY `typereg` (`type`,`reg_date`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
|
|
|
09/17/2010, 11:02
|
#4
|
elite*gold: 246
Join Date: Jan 2008
Posts: 1,712
Received Thanks: 896
|
Quote:
Originally Posted by San-Goku
king arthur..can u show..this is mine:
Code:
`id` int(4) unsigned zerofill NOT NULL AUTO_INCREMENT,
`name` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '',
`password` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '',
`type` int(4) unsigned NOT NULL DEFAULT '0',
`point` int(4) DEFAULT '0',
`pointtime` int(4) unsigned zerofill NOT NULL DEFAULT '20020318',
`online` int(4) unsigned zerofill NOT NULL DEFAULT '0000',
`reg_date` datetime DEFAULT NULL,
`licence` int(4) unsigned DEFAULT '0',
`reg_flag` bigint(12) unsigned DEFAULT '3',
`netbar_ip` varchar(15) DEFAULT '127.0.0.1',
`ip_mask` varchar(15) DEFAULT '255.255.255.255',
`add_type` smallint(1) unsigned zerofill NOT NULL DEFAULT '0',
`[COLOR="Red"][B]VIP[/B][/COLOR]` int(4) unsigned NOT NULL DEFAULT '[COLOR="Red"][B]4[/B][/COLOR]',
`offline` int(4) DEFAULT NULL,
`pwd` varchar(32) DEFAULT NULL,
`idnum` varchar(20) DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `index_name_pass` (`name`,`password`),
UNIQUE KEY `index_username` (`name`),
KEY `index_type` (`type`),
KEY `index_regtype` (`reg_flag`),
KEY `index_isp` (`type`,`netbar_ip`),
KEY `typereg` (`type`,`reg_date`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
|
#Highlighted.
|
|
|
09/17/2010, 11:05
|
#5
|
elite*gold: 0
Join Date: Sep 2010
Posts: 340
Received Thanks: 201
|
owh..so its mean new player start with vip 4??how about 100k pp??
|
|
|
09/17/2010, 11:59
|
#6
|
elite*gold: 0
Join Date: Feb 2010
Posts: 84
Received Thanks: 48
|
cq_user find collum emoney2...
follow step like king arthur show..
design table cq_user
|
|
|
09/17/2010, 14:17
|
#7
|
elite*gold: 0
Join Date: Aug 2010
Posts: 74
Received Thanks: 47
|
could u show it king arthur or any sql for do thats?thats would be easy for MrKing i think
|
|
|
09/17/2010, 15:14
|
#8
|
elite*gold: 246
Join Date: Jan 2008
Posts: 1,712
Received Thanks: 896
|
Quote:
Originally Posted by DeadHackerz
could u show it king arthur or any sql for do thats?thats would be easy for MrKing i think
|
Yep.
Code:
ALTER TABLE account ALTER VIP SET DEFAULT 3;
|
|
|
09/17/2010, 15:52
|
#9
|
elite*gold: 0
Join Date: Aug 2010
Posts: 74
Received Thanks: 47
|
just copy and paste at navicat like that?
|
|
|
09/17/2010, 16:14
|
#10
|
elite*gold: 246
Join Date: Jan 2008
Posts: 1,712
Received Thanks: 896
|
Quote:
Originally Posted by DeadHackerz
just copy and paste at navicat like that?
|
Yes. Just make sure that you are in the right database when you run it (account/my/my2). Also note that this will only affect new accounts. You must run an update query if you want to change past accounts.
|
|
|
09/17/2010, 18:08
|
#11
|
elite*gold: 0
Join Date: Aug 2010
Posts: 74
Received Thanks: 47
|
Quote:
Originally Posted by King_Arthur
Yes. Just make sure that you are in the right database when you run it (account/my/my2). Also note that this will only affect new accounts. You must run an update query if you want to change past accounts.
|
run it account/my/my2?didnt understand
|
|
|
09/17/2010, 18:13
|
#12
|
elite*gold: 246
Join Date: Jan 2008
Posts: 1,712
Received Thanks: 896
|
Quote:
Originally Posted by DeadHackerz
run it account/my/my2?didnt understand
|
I said that to make sure that people run the query in the database where their account information is stored. If you have a separate account db, then run it there. If you don't have a separate account db, then run it in either the my db or the my2 db, whichever one you have.
|
|
|
09/18/2010, 10:58
|
#13
|
elite*gold: 0
Join Date: May 2010
Posts: 222
Received Thanks: 668
|
for adding 100k PP follow these pic.s
Regards
|
|
|
09/18/2010, 19:23
|
#14
|
elite*gold: 0
Join Date: Aug 2010
Posts: 74
Received Thanks: 47
|
do i need to tick the box side it?
|
|
|
09/18/2010, 19:27
|
#15
|
elite*gold: 0
Join Date: May 2010
Posts: 222
Received Thanks: 668
|
no just change the default no. to the number u want same to vip. but open design table in cq_account not cq_user
Regards
|
|
|
 |
Similar Threads
|
How to Change a players name, And make ph's
08/18/2008 - Conquer Online 2 - 0 Replies
Hey..
So in phpmyadmin if i wanna delete a player, they still comeback..
if i change a name, they still login the same, but it stays as is in phpmyadmin
using stealarchers source
(edited LOTF)
|
Make HOT items from players!
08/26/2007 - CO2 Exploits, Hacks & Tools - 27 Replies
Ok, i just thought of this:
1.Get around 1,000,000,000 gold... (Art money..., doesnt have to be 1,000,000,000 but a amout you think is high and un-art moneyed).
2.Be in a map where pk is on.
3.Find someone with a item you love and want!
4.Whisper to them a trade. ex> Me:Give you 1kkk for your super 2 club! **trades dude and show him 1kkk** Him:Bullshit!! Me:I trade you, plz i need bad! **Then they un-equip what you want**
5.Trade them again to make sure they have what you want un-equip....
|
Make players small?
07/12/2007 - Conquer Online 2 - 2 Replies
Alright im gonna start working on my auto-plvler for any spawn. But i need someones help.... I can't remember... Is tehre any way to make a player SMALL. Not DELETE the player because techinally hes still clickable even though his body is not there... I want to make him like size 1 so its impossible to click him, like editing the monster.dat to make mobs small... Is there anyway to make players small?
Thanks in advance.
EDIT: 20 views and not one comment? -.- I guess i won't be releasing...
|
How to make SV DC on all players
05/19/2007 - Conquer Online 2 - 16 Replies
as the topic says, how to make SV disconnect on every player? at the moment I can only write down names of when you see them you disconnect, but to make it more safe, I want to make it dc on all players
How to do that?
text2schild.php?smilienummer=1&text=Help Appreciated, and karma awarded =D' border='0' alt='Help Appreciated, and karma awarded =D' />
|
Make players go red
11/26/2005 - Lin2 Exploits, Hacks, Bots, Tools & Macros - 4 Replies
Ask some1 who can cast poison to do so on you.
Let him poison you until you have very low HP and slow regenerate HP.
Ask some1 to pvp and let him hit you first. Then you die lol.
Then he goes red and everyone starts attacking him and he will drop items :D
Make sure that a friend of you is near and can pick up the items :D
Well, that's it
|
All times are GMT +1. The time now is 09:01.
|
|