|
You last visited: Today at 23:26
Advertisement
Setup Server Tutorial
Discussion on Setup Server Tutorial within the CO2 Guides & Templates forum part of the Conquer Online 2 category.
04/07/2006, 04:47
|
#61
|
elite*gold: 0
Join Date: Feb 2006
Posts: 42
Received Thanks: 7
|
HELP ME PLEASE ADD ME PLEASE to msn  or aim badxkidxpunk please i need help no one ever helps me im so close i cant get past the debugging
|
|
|
04/07/2006, 04:55
|
#62
|
elite*gold: 20
Join Date: Jan 2006
Posts: 890
Received Thanks: 241
|
you noob dont post that many times in a row post once and someone will help you
|
|
|
04/07/2006, 06:45
|
#63
|
elite*gold: 0
Join Date: Feb 2006
Posts: 9
Received Thanks: 0
|
Quote:
Originally posted by bender77@Apr 7 2006, 04:47
HELP ME PLEASE ADD ME PLEASE to msn or aim badxkidxpunk please i need help no one ever helps me im so close i cant get past the debugging
|
Mn ppl like you make others to not bother posting.
|
|
|
04/08/2006, 01:11
|
#64
|
elite*gold: 0
Join Date: Feb 2006
Posts: 42
Received Thanks: 7
|
that made no sense light
|
|
|
04/08/2006, 03:39
|
#65
|
elite*gold: 0
Join Date: Feb 2006
Posts: 9
Received Thanks: 0
|
Quote:
Originally posted by bender77@Apr 8 2006, 01:11
that made no sense light
|
read it again and it might.
now i hink this post is dead.. no one is willing to help
|
|
|
04/08/2006, 06:50
|
#66
|
elite*gold: 0
Join Date: Feb 2006
Posts: 42
Received Thanks: 7
|
*mummbles* cuz ur here
|
|
|
04/08/2006, 18:29
|
#67
|
elite*gold: 0
Join Date: Jul 2005
Posts: 120
Received Thanks: 6
|
would you stop flaming? bender, stop spamming for help, posting alot isn't going to help, and stop ******* spamming me in pm, I got mine to work, i told you what to do, if you can't figure something as simple as this out, THEN DONT BOTHER!
|
|
|
04/08/2006, 22:25
|
#68
|
elite*gold: 0
Join Date: Mar 2006
Posts: 8
Received Thanks: 0
|
wats the code for the co full sever thing
|
|
|
04/11/2006, 05:36
|
#69
|
elite*gold: 0
Join Date: Jan 2006
Posts: 21
Received Thanks: 0
|
I'm having problem with postegreSQL after I save it to my computer and try to open the installer it says:
This installation package could not be opened. Verify that the package exists and that you can access it, or contact the application vendor to verify that this is a valid windows installer package.
err. How do I do this?
|
|
|
04/11/2006, 05:51
|
#70
|
elite*gold: 0
Join Date: Jan 2006
Posts: 21
Received Thanks: 0
|
eh wow thats real nice I can't install it in english but i can use portuguese wow lol just wow
|
|
|
04/12/2006, 02:52
|
#71
|
elite*gold: 0
Join Date: Dec 2005
Posts: 321
Received Thanks: 3
|
Nice guide
|
|
|
04/15/2006, 11:45
|
#72
|
elite*gold: 0
Join Date: Sep 2005
Posts: 10
Received Thanks: 2
|
Sry, but step 4 isn't clear for me.
I didn't see that i must make a server. I installen postegreSQL and i only must make a username and password, not a server.
Thank you if you can help me.
|
|
|
04/15/2006, 19:36
|
#73
|
elite*gold: 0
Join Date: Dec 2005
Posts: 10
Received Thanks: 0
|
Quote:
Originally posted by aidas2004@Mar 23 2006, 22:30
lostsolder05> just do simple query.
In PostgreSQL select u'r Conquer database and use Query button then copy/past all this -> 
good luck...
|
the table.txt file is not longer available. can someone post it again pls
|
|
|
04/15/2006, 19:57
|
#74
|
elite*gold: 0
Join Date: Dec 2005
Posts: 10
Received Thanks: 0
|
5. Get Table Definitions;  and do a SQL Query to set up
Tablespaces. (Open table def. and copy all then paste into SQL Query window box)
ok i got the tables now
Code:
CREATE TABLESPACE "co_MainData"
OWNER postgres
LOCATION 'C:/COFullDB/Main/OtherData';
CREATE TABLESPACE "co_Indexes"
OWNER postgres
LOCATION 'C:/COFullDB/Main/Indexes';
CREATE TABLESPACE "co_CharacterData"
OWNER postgres
LOCATION 'C:/COFullDB/Main/CharacterData';
CREATE TABLESPACE "co_AuthTables"
OWNER postgres
LOCATION 'C:/COFullDB/Main/AuthTables';
-- Table: "Account"
-- DROP TABLE "Account";
CREATE TABLE "Account"
(
"AccountID" varchar(16) NOT NULL,
"Password" char(32),
"LastLogon" timestamp,
"LogonCount" int4 NOT NULL DEFAULT 0,
"LogonAction" int2 NOT NULL DEFAULT 2, -- 0 = User does not exist (should never be on an active account)
"Flags" int4 DEFAULT 0,
"IPAddress" inet,
CONSTRAINT "pkey_Account_AccountID" PRIMARY KEY ("AccountID") USING INDEX TABLESPACE "co_Indexes"
)
WITHOUT OIDS TABLESPACE "co_AuthTables";
ALTER TABLE "Account" OWNER TO postgres;
COMMENT ON COLUMN "Account"."LogonAction" IS '0 = User does not exist (should never be on an active account)
1 = Normal Logon
2 = Create Character
4 = Banned';
-- Index: "ix_Account_AccountID"
-- DROP INDEX "ix_Account_AccountID";
CREATE UNIQUE INDEX "ix_Account_AccountID"
ON "Account"
USING btree
("AccountID")
TABLESPACE "co_Indexes";
CREATE SEQUENCE "Characters_CharacterID_seq"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 41
CACHE 1;
ALTER TABLE "Characters_CharacterID_seq" OWNER TO postgres;
-- Table: "Characters"
-- DROP TABLE "Characters";
CREATE TABLE "Characters"
(
"CharacterID" int4 NOT NULL DEFAULT nextval('"Characters_CharacterID_seq"'::regclass),
"Account" char(16) NOT NULL,
"Name" char(16) NOT NULL,
"Level" int2 NOT NULL DEFAULT 1,
"Experience" int4 NOT NULL DEFAULT 0,
"Class" int4 NOT NULL,
"Model" int4 NOT NULL,
"Strength" int4 NOT NULL DEFAULT 0,
"Agility" int4 NOT NULL DEFAULT 0,
"Spirit" int4 NOT NULL DEFAULT 0,
"Vitality" int4 NOT NULL DEFAULT 0,
"Flags" int2 NOT NULL DEFAULT 0,
"HP" int4 NOT NULL DEFAULT 1,
"MP" int4 NOT NULL DEFAULT 0,
"PKPoints" int4 NOT NULL DEFAULT 0,
"LocationX" int4 NOT NULL DEFAULT 438,
"LocationY" int4 NOT NULL DEFAULT 377,
"Map" int4 NOT NULL DEFAULT 1011,
"Money" int8 NOT NULL DEFAULT 0,
"StatPoints" int2 NOT NULL DEFAULT 0,
"Spouse" int4 NOT NULL DEFAULT 0,
CONSTRAINT "pkey_Characters_CharacterID" PRIMARY KEY ("CharacterID") USING INDEX TABLESPACE "co_Indexes",
CONSTRAINT "fkey_Characters_Account" FOREIGN KEY ("Account")
REFERENCES "Account" ("AccountID") MATCH FULL
ON UPDATE RESTRICT ON DELETE RESTRICT,
CONSTRAINT "ukey_Characters_Name" UNIQUE ("Name") USING INDEX TABLESPACE "co_Indexes"
)
WITHOUT OIDS TABLESPACE "co_CharacterData";
ALTER TABLE "Characters" OWNER TO postgres;
-- Table: "DefaultStats"
-- DROP TABLE "DefaultStats";
CREATE TABLE "DefaultStats"
(
"Class" int2 NOT NULL,
"Strength" int4 NOT NULL,
"Agility" int4 NOT NULL,
"Vitality" int4 NOT NULL,
"Spirit" int4 NOT NULL,
"Level" int2 NOT NULL,
CONSTRAINT "pkey_DefaultStats_LevelClass" PRIMARY KEY ("Class", "Level") USING INDEX TABLESPACE "co_Indexes"
)
WITHOUT OIDS;
ALTER TABLE "DefaultStats" OWNER TO postgres;
-- Table: "Portals"
-- DROP TABLE "Portals";
CREATE TABLE "Portals"
(
"Name" varchar(12) NOT NULL,
"FromMap" int4 NOT NULL DEFAULT 0,
"FromX" int2 NOT NULL DEFAULT 0,
"FromY" int2 NOT NULL DEFAULT 0,
"ToMap" int2 NOT NULL DEFAULT 0,
"ToX" int2 NOT NULL DEFAULT 0,
"ToY" int2 NOT NULL DEFAULT 0,
CONSTRAINT "pkey_Portals_Name" PRIMARY KEY ("Name") USING INDEX TABLESPACE "co_Indexes"
)
WITHOUT OIDS;
ALTER TABLE "Portals" OWNER TO postgres;
-- Table: "Servers"
-- DROP TABLE "Servers";
CREATE TABLE "Servers"
(
"ServerName" text NOT NULL,
"IPAddress" text NOT NULL,
CONSTRAINT "pkey_Servers_ServerName" PRIMARY KEY ("ServerName") USING INDEX TABLESPACE "co_Indexes"
)
WITHOUT OIDS TABLESPACE "co_AuthTables";
ALTER TABLE "Servers" OWNER TO postgres;
-- Table: "Settings"
-- DROP TABLE "Settings";
CREATE TABLE "Settings"
(
"Name" text NOT NULL,
"Value" text NOT NULL,
CONSTRAINT "pkey_Settings_Name" PRIMARY KEY ("Name") USING INDEX TABLESPACE "co_Indexes"
)
WITHOUT OIDS;
ALTER TABLE "Settings" OWNER TO postgres;
INSERT INTO "DefaultStats" ("Class", "Strength", "Agility", "Vitality", "Spirit", "Level") VALUES (1, 5, 2, 3, 0, 1);
INSERT INTO "DefaultStats" ("Class", "Strength", "Agility", "Vitality", "Spirit", "Level") VALUES (1, 7, 2, 4, 0, 2);
INSERT INTO "DefaultStats" ("Class", "Strength", "Agility", "Vitality", "Spirit", "Level") VALUES (4, 2, 7, 1, 0, 1);
INSERT INTO "DefaultStats" ("Class", "Strength", "Agility", "Vitality", "Spirit", "Level") VALUES (10, 0, 2, 3, 5, 1);
INSERT INTO "DefaultStats" ("Class", "Strength", "Agility", "Vitality", "Spirit", "Level") VALUES (2, 5, 2, 3, 0, 1);
but when i make the sql query.
i got this msg.
Code:
ERROR: could not set permissions on directory "C:/COFullDB/Main/OtherData": Permission denied
can someone help me
sorry i found the solution on another place. i paste it so other ppl can get it
Code:
right click on every folder and subfolder and be sure no one is write protected (sometimes Windows XP does this automatical) and then Share the folders in Local Network. Then try it again, it should work now..
|
|
|
04/15/2006, 22:17
|
#75
|
elite*gold: 0
Join Date: Apr 2006
Posts: 21
Received Thanks: 0
|
I disabled teh second checkbox in the signing thing, adn created a test certificate, it still asked me for a password, so I tired the one I used as the test certificate and it sad it was the wrong password?
Edit:
Also - When installing PostgreSQL, I go through all the stuff and it installs, but always freezes at "Setting filesystem permissions..." and sits there not gaining any progress after that. What shuold I do about that?
|
|
|
 |
|
Similar Threads
|
[Server Setup Video Tutorial]
05/03/2010 - Shaiya Private Server - 1 Replies
would someone just make a tutorial video how to make shaiya private server,so everything its gonna be more easy to understand...sorry for my bad english:handsdown:
|
[Tutorial][CN] How to setup a aion bot
01/22/2010 - Aion Hacks, Bots, Cheats & Exploits - 684 Replies
First: I dont know if this bot contains a virus, a trojan or a keylogger.
Second: Some users are having problems with this bot. First try this one, then try the new files. Solution can be found in this thread, still to lazy to test new things.
Third: Don't blame me cuz of my bad english ;P be happy bout this.
1. What you need
-Downloads
-OS Settings
-Basic Information
2. How to setup
|
setup Tutorial for IG Walker
04/25/2006 - Lineage 2 - 4 Replies
Hi!!!
I want to use IG Walker, but i dont know how to configure it -.-
i know this is really stupid, but i need some kind of step by step tutorial what exactly is to do. :?
Im so far:
I was able to Run it.
I get into the configure-menu (ingame)
I tried to configure..:whow:
But every time i click on "Start Combat" (or so) the bot doesnt attack -.-
what is my mistake??!
|
All times are GMT +1. The time now is 23:27.
|
|