You last visited: Today at 11:52
Advertisement
LOTF Source Guide
Discussion on LOTF Source Guide within the CO2 PServer Guides & Releases forum part of the CO2 Private Server category.
08/20/2008, 21:30
#106
elite*gold: 20
Join Date: May 2007
Posts: 1,125
Received Thanks: 332
Quote:
Originally Posted by
quadruple1
When i put coproj>accounts>insert>any username> put LogonType to 2 theirs no save button anywhere!!!!!
but there is a "Go" button >.>
08/20/2008, 21:42
#107
elite*gold: 0
Join Date: Jul 2007
Posts: 442
Received Thanks: 105
before go it says what will happen if you hit go.Save is one of them
08/21/2008, 02:44
#108
elite*gold: 0
Join Date: Oct 2007
Posts: 116
Received Thanks: 16
Hmm well i see no save but anyway I geuss go works, but I still cant log into the server...My blackscreen when I open the .exe in the source says im connected and doesn't disappear and i still cant log in
I change everything to my ip in the source
changed my server.dat
and when i try to log it says server might have a maintaince or something like that
Can someone help me?
08/21/2008, 18:09
#109
elite*gold: 0
Join Date: Nov 2006
Posts: 115
Received Thanks: 6
How come after creating a pserver using this guide, I get all kinds of messages from hamachi users saying imma get sued for the lotf guide? Honestly this doesnt make since, seems that if I can be sued for the lotf guide, then TQ can sue for just using the CO title, characters, and everything else that stays the same. Is it possible to be sued, or are they just blowing smoke up my ***?
08/23/2008, 21:44
#110
elite*gold: 0
Join Date: Feb 2008
Posts: 668
Received Thanks: 160
Quote:
Originally Posted by
plasma-hand
Yuki ill upload a better register page..It will work by going to
your ip might be different but you get the basic concept
Thanks, I'll try if it works
08/23/2008, 21:47
#111
elite*gold: 0
Join Date: Jul 2007
Posts: 442
Received Thanks: 105
ya it works a lot better i think
08/27/2008, 04:17
#112
elite*gold: 0
Join Date: Sep 2006
Posts: 70
Received Thanks: 6
i want to make the database remote how can i do that?
08/28/2008, 03:55
#113
elite*gold: 0
Join Date: Sep 2006
Posts: 70
Received Thanks: 6
rofl that was a idioact question i was too lazy to look at the c# files anyways i cant get my gm to work how should i go among this to get it woorking
08/29/2008, 11:23
#114
elite*gold: 0
Join Date: Nov 2006
Posts: 17
Received Thanks: 0
Quote:
Originally Posted by
The_Real_Slim_Shady
i m GM man the comand for lvl works but the comands for items dont works
its /item KingofClub 12 7 255 13 13
08/29/2008, 23:47
#115
elite*gold: 0
Join Date: Jul 2008
Posts: 70
Received Thanks: 1
no.. its /item Super KingOfClub 12 15 255 13 13... -.- U only had 5.. it was 6... -.- Wow.. if that dun work then the source aint pro..
/item KingOfClub 7 12 15 255 13 13
08/30/2008, 06:46
#116
elite*gold: 20
Join Date: Apr 2008
Posts: 2,281
Received Thanks: 913
Seriously... your both wrong.
First off; its
KingsClub .
Second off;
Heres how the /item command is setup:
Code:
[B]/item [Quality] [ItemName] [+] [-] [HP] [Gem1] [Gem2][/B]
So heres what the command for a KingsClub would look like:
Code:
[B]/item Super KingsClub 12 7 255 13 13[/B]
08/31/2008, 02:13
#117
elite*gold: 0
Join Date: Sep 2006
Posts: 70
Received Thanks: 6
Quote:
Originally Posted by
kinshi88
Seriously... your both wrong.
First off; its
KingsClub .
Second off;
Heres how the /item command is setup:
Code:
[B]/item [Quality] [ItemName] [+] [-] [HP] [Gem1] [Gem2][/B]
So heres what the command for a KingsClub would look like:
Code:
[B]/item Super KingsClub 12 7 255 13 13[/B]
Ok first off i cant get gm to work period the codes are simple any retart can do it expcaily since the **** is GIVEN TO YOU
08/31/2008, 02:36
#118
elite*gold: 0
Join Date: Feb 2008
Posts: 1,590
Received Thanks: 154
Quote:
Originally Posted by
redskull010101
Ok first off i cant get gm to work period the codes are simple any retart can do it expcaily since the **** is GIVEN TO YOU
Go into the database>accounts>your account and set Status to 8?
08/31/2008, 02:55
#119
elite*gold: 0
Join Date: Sep 2006
Posts: 70
Received Thanks: 6
Quote:
Originally Posted by
kinshi88
Seriously... your both wrong.
First off; its
KingsClub .
Second off;
Heres how the /item command is setup:
Code:
[B]/item [Quality] [ItemName] [+] [-] [HP] [Gem1] [Gem2][/B]
So heres what the command for a KingsClub would look like:
Code:
[B]/item Super KingsClub 12 7 255 13 13[/B]
Quote:
Originally Posted by
tao4229
Go into the database>accounts>your account and set Status to 8?
tried that
-.-
Attached Images
test.jpg
(16.8 KB, 27 views)
08/31/2008, 03:27
#120
elite*gold: 20
Join Date: Apr 2008
Posts: 2,281
Received Thanks: 913
Make sure your offline when you change anything with characters in the Database.
Next, make sure that you have the /item command.
Then, make sure that you need status of 8 to use it.
Ex:
Code:
if (Status == 8)
{
if (Splitter[0] == "/item")
{
Ini ItemNames = new Ini(System.Windows.Forms.Application.StartupPath + @"ItemNamesToId.ini");
string ItemName = Splitter[2];
string ItemQuality = Splitter[1];
byte Plus = byte.Parse(Splitter[3]);
byte Bless = byte.Parse(Splitter[4]);
byte Enchant = byte.Parse(Splitter[5]);
byte Soc1 = byte.Parse(Splitter[6]);
byte Soc2 = byte.Parse(Splitter[7]);
uint ItemId = 0;
ItemId = uint.Parse(ItemNames.ReadValue("Items", ItemName));
if (ItemId == 0)
return;
byte Quality = 1;
if (ItemQuality == "One")
Quality = 1;
else if (ItemQuality == "Normal")
Quality = 5;
else if (ItemQuality == "Unique")
Quality = 7;
else if (ItemQuality == "Refined")
Quality = 6;
else if (ItemQuality == "Elite")
Quality = 8;
else if (ItemQuality == "Super")
Quality = 9;
else
Quality = (byte)Other.ItemQuality(ItemId);
ItemId = Other.ItemQualityChange(ItemId, Quality);
if (MyChar.ItemsInInventory < 40)
MyChar.AddItem(ItemId.ToString() + "-" + Plus.ToString() + "-" + Bless.ToString() + "-" + Enchant.ToString() + "-" + Soc1.ToString() + "-" + Soc2.ToString(), 0, (uint)General.Rand.Next(57458353));
}
}
Similar Threads
[Guide] How to change server restart time (LOTF Source)
08/17/2008 - CO2 Guides & Templates - 10 Replies
I will not take any credit for this topic, I am only releasing it.
I am thanking EVERYONE that helped me. Thank you. =]
Introduction
Before we may continue, make sure you have the following.
1. Microsoft Visual C# 2005 or 2008
2. LOTF source
3. A brain w/ common sense
LOTF Source Guide
07/20/2008 - CO2 Guides & Templates - 5 Replies
Opps, comp was acting up when I posted this, please go to this link for the guide:
http://www.elitepvpers.com/forum/co2-main-discussi ons-questions/150327-lotf-source-guide.html
- Super
Can someone make a guide for lotf source?
07/13/2008 - Conquer Online 2 - 3 Replies
The title says it, iono how to use it... can someone help? i changed the config, executed the backup.sql in mysql..... but which file turns on the server?
All times are GMT +1. The time now is 11:55 .