LOTF Source Guide

08/20/2008 21:30 LetterX#106
Quote:
Originally Posted by quadruple1 View Post
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 plasma-hand#107
before go it says what will happen if you hit go.Save is one of them
08/21/2008 02:44 quadruple1#108
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 Cypher71501#109
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 ass?
08/23/2008 21:44 YukiXian#110
Quote:
Originally Posted by plasma-hand View Post
Yuki ill upload a better register page..It will work by going to [Only registered and activated users can see links. Click Here To Register...]
your ip might be different but you get the basic concept

[Only registered and activated users can see links. Click Here To Register...]

Thanks, I'll try if it works
08/23/2008 21:47 plasma-hand#111
ya it works a lot better i think
08/27/2008 04:17 redskull010101#112
i want to make the database remote how can i do that?
08/28/2008 03:55 redskull010101#113
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 alanology#114
Quote:
Originally Posted by The_Real_Slim_Shady View Post
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 IceyMan#115
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 kinshi88#116
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 redskull010101#117
Quote:
Originally Posted by kinshi88 View Post
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 shit is GIVEN TO YOU
08/31/2008 02:36 tao4229#118
Quote:
Originally Posted by redskull010101 View Post
Ok first off i cant get gm to work period the codes are simple any retart can do it expcaily since the shit is GIVEN TO YOU
Go into the database>accounts>your account and set Status to 8?
08/31/2008 02:55 redskull010101#119
Quote:
Originally Posted by kinshi88 View Post
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 View Post
Go into the database>accounts>your account and set Status to 8?
tried that
-.-
08/31/2008 03:27 kinshi88#120
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));
                                        }
                                    }