Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Conquer Online 2 > CO2 Private Server > CO2 PServer Guides & Releases
You last visited: Today at 07:43

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



[Release] How To Fix No Gears At Login (LOTF)

Discussion on [Release] How To Fix No Gears At Login (LOTF) within the CO2 PServer Guides & Releases forum part of the CO2 Private Server category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Aug 2008
Posts: 211
Received Thanks: 184
[Release] How To Fix No Gears At Login (LOTF)

Hello i go show u how to fix the naked ppl bug in lotf source.
I think that everyone have seeing this problem on lotf source that when u login u see everyone naked well its realy easy to fix ^^

-----------------------------------------------------------------------------
What U Need:
- (L)ands (O)f (T)he (F)orgotten Source (L.O.T.F)
- Microsoft Visual C Sharp (C#)
- Some Coding Skills
-----------------------------------------------------------------------------
What To Do:
(1) Open The COServerProject
(2) Open Client.cs (In COServerProject)
(3) If you search a little you see the text from the login text of the server
(4) Change the text to (look below)
(5) And Debug it.

Change
Code:
                                        if (MyChar.RBCount > 1)
                                            SendPacket(General.MyPackets.String(MyChar.UID, 10, "2NDMetempsychosis"));

                                        SendPacket(General.MyPackets.SendMsg(MessageId, "SYSTEM", MyChar.Name, "Welcome to Lands Of The Forgotten Conquer Online!", 2000));
                                        SendPacket(General.MyPackets.SendMsg(MessageId, "SYSTEM", MyChar.Name, "This server is in testing stage. That means when we have passed the testing phase, we will delete all characters.", 2000));
                                        SendPacket(General.MyPackets.SendMsg(MessageId, "SYSTEM", MyChar.Name, "The real playing starts after all bugs have been removed and most of the things implemented.", 2000));
                                        SendPacket(General.MyPackets.SendMsg(MessageId, "SYSTEM", MyChar.Name, "Report ANY bugs you find on the forum! Happy playing!", 2000));
                                        SendPacket(General.MyPackets.SendMsg(MessageId, "SYSTEM", MyChar.Name, "Don't forget to vote for us! Go on our forum to vote!", 2000));
                                        SendPacket(General.MyPackets.SendMsg(MessageId, "SYSTEM", MyChar.Name, "Exp Rate: " + DataBase.ExpRate + "x", 2000));
                                        SendPacket(General.MyPackets.SendMsg(MessageId, "SYSTEM", MyChar.Name, "Players Online: " + World.AllChars.Count, 2005));
                                        SendPacket(General.MyPackets.GeneralData(MyChar.UID, 0, 0, 0, 75));
                                        There = true;
Into
Code:
                                    if (MyChar.RBCount == 2)
                                    {
                                        SendPacket(General.MyPackets.String(MyChar.UID, 10, "2NDMetempsychosis"));
                                    }

                                    SendPacket(General.MyPackets.SendMsg(MessageId, "SYSTEM", MyChar.Name, "Welcome to .......", 2000));
                                    SendPacket(General.MyPackets.SendMsg(MessageId, "SYSTEM", MyChar.Name, "Report Any bugs you find on the forum", 2000));
                                    SendPacket(General.MyPackets.SendMsg(MessageId, "SYSTEM", MyChar.Name, "Don't Forget To Vote For ........ Daily", 2000));
                                    SendPacket(General.MyPackets.SendMsg(MessageId, "SYSTEM", MyChar.Name, "Exp Rate: " + ExternalDatabase.ExpRate + "x", 2000));
                                    SendPacket(General.MyPackets.SendMsg(MessageId, "SYSTEM", MyChar.Name, "Players Online: " 
                                        + World.AllChars.Count, 2005));
                                    SendPacket(General.MyPackets.GeneralData(MyChar.UID, 0, 0, 0, 75));
                                    There = true;
                                    World.SpawnMeToOthers(MyChar, true);
If This Helped You Hit The THANKS Button Please And I Will Give A THANKS Back
Think-Fast is offline  
Thanks
22 Users
Old 08/14/2008, 18:43   #2
 
elite*gold: 0
Join Date: Aug 2008
Posts: 211
Received Thanks: 184
Someone needs a other guide for LOTF or something else for LOTF? then post it here!
Think-Fast is offline  
Old 08/14/2008, 18:49   #3
 
adz06676's Avatar
 
elite*gold: 0
Join Date: Oct 2007
Posts: 450
Received Thanks: 68
thats like the easiest bug to fix in the lotf lol
adz06676 is offline  
Old 08/14/2008, 19:05   #4
 
elite*gold: 0
Join Date: Aug 2008
Posts: 211
Received Thanks: 184
Quote:
Originally Posted by adz06676 View Post
thats like the easiest bug to fix in the lotf lol
Well not many private servers have fixed it and did i ever said it was hard?
Think-Fast is offline  
Old 08/14/2008, 19:25   #5
 
elite*gold: 0
Join Date: Jun 2007
Posts: 323
Received Thanks: 30
Quote:
Originally Posted by Think-Fast View Post
Well not many private servers have fixed it and did i ever said it was hard?
WELL IT IS HARD HALP ME PLX >_< I R NEWB PLIX HALP ME Lol.. Yea its easy
Zanzibar is offline  
Old 08/14/2008, 19:41   #6
 
adz06676's Avatar
 
elite*gold: 0
Join Date: Oct 2007
Posts: 450
Received Thanks: 68
Quote:
Originally Posted by Think-Fast View Post
Well not many private servers have fixed it and did i ever said it was hard?
when did i say you said it was hard? i was just saying that its an easy fix
adz06676 is offline  
Old 08/14/2008, 20:23   #7
 
elite*gold: 0
Join Date: Aug 2008
Posts: 211
Received Thanks: 184
Quote:
Originally Posted by adz06676 View Post
when did i say you said it was hard? i was just saying that its an easy fix
ok you win xD
Think-Fast is offline  
Old 08/14/2008, 21:46   #8
 
scottdavey's Avatar
 
elite*gold: 0
Join Date: Dec 2006
Posts: 684
Received Thanks: 238
Why the hell would you even post this, Copy and pasting 1 line from another part of the script

Jees get a life
scottdavey is offline  
Old 08/15/2008, 02:47   #9
 
elite*gold: 0
Join Date: Dec 2005
Posts: 84
Received Thanks: 1
Quote:
Originally Posted by Think-Fast View Post
Hello i go show u how to fix the naked ppl bug in lotf source.
I think that everyone have seeing this problem on lotf source that when u login u see everyone naked well its realy easy to fix ^^

-----------------------------------------------------------------------------
What U Need:
- (L)ands (O)f (T)he (F)orgotten Source (L.O.T.F)
- Microsoft Visual C Sharp (C#)
- Some Coding Skills
-----------------------------------------------------------------------------
What To Do:
(1) Open The COServerProject
(2) Open Client.cs (In COServerProject)
(3) If you search a little you see the text from the login text of the server
(4) Change the text to (look below)
(5) And Debug it.

Change
Code:
                                        if (MyChar.RBCount > 1)
                                            SendPacket(General.MyPackets.String(MyChar.UID, 10, "2NDMetempsychosis"));

                                        SendPacket(General.MyPackets.SendMsg(MessageId, "SYSTEM", MyChar.Name, "Welcome to Lands Of The Forgotten Conquer Online!", 2000));
                                        SendPacket(General.MyPackets.SendMsg(MessageId, "SYSTEM", MyChar.Name, "This server is in testing stage. That means when we have passed the testing phase, we will delete all characters.", 2000));
                                        SendPacket(General.MyPackets.SendMsg(MessageId, "SYSTEM", MyChar.Name, "The real playing starts after all bugs have been removed and most of the things implemented.", 2000));
                                        SendPacket(General.MyPackets.SendMsg(MessageId, "SYSTEM", MyChar.Name, "Report ANY bugs you find on the forum! Happy playing!", 2000));
                                        SendPacket(General.MyPackets.SendMsg(MessageId, "SYSTEM", MyChar.Name, "Don't forget to vote for us! Go on our forum to vote!", 2000));
                                        SendPacket(General.MyPackets.SendMsg(MessageId, "SYSTEM", MyChar.Name, "Exp Rate: " + DataBase.ExpRate + "x", 2000));
                                        SendPacket(General.MyPackets.SendMsg(MessageId, "SYSTEM", MyChar.Name, "Players Online: " + World.AllChars.Count, 2005));
                                        SendPacket(General.MyPackets.GeneralData(MyChar.UID, 0, 0, 0, 75));
                                        There = true;
Into
Code:
                                    if (MyChar.RBCount == 2)
                                    {
                                        SendPacket(General.MyPackets.String(MyChar.UID, 10, "2NDMetempsychosis"));
                                    }

                                    SendPacket(General.MyPackets.SendMsg(MessageId, "SYSTEM", MyChar.Name, "Welcome to .......", 2000));
                                    SendPacket(General.MyPackets.SendMsg(MessageId, "SYSTEM", MyChar.Name, "Report Any bugs you find on the forum", 2000));
                                    SendPacket(General.MyPackets.SendMsg(MessageId, "SYSTEM", MyChar.Name, "Don't Forget To Vote For ........ Daily", 2000));
                                    SendPacket(General.MyPackets.SendMsg(MessageId, "SYSTEM", MyChar.Name, "Exp Rate: " + ExternalDatabase.ExpRate + "x", 2000));
                                    SendPacket(General.MyPackets.SendMsg(MessageId, "SYSTEM", MyChar.Name, "Players Online: " 
                                        + World.AllChars.Count, 2005));
                                    SendPacket(General.MyPackets.GeneralData(MyChar.UID, 0, 0, 0, 75));
                                    There = true;
                                    World.SpawnMeToOthers(MyChar, true);
If This Helped You Hit The THANKS Button Please And I Will Give A THANKS Back
What is your desire to keep making new accounts, getting too hated on the old ones? Yes I know it's you.
Akroma is offline  
Old 08/15/2008, 02:58   #10
 
elite*gold: 0
Join Date: Aug 2008
Posts: 211
Received Thanks: 184
Quote:
Originally Posted by Akroma View Post
What is your desire to keep making new accounts, getting too hated on the old ones? Yes I know it's you.
i know who is who? im new on this forum i came from r*agez*n* that is why there are people in my team from r*agez*n*

btw why did you quote my thread if you tell something about something else:S?
Think-Fast is offline  
Old 08/15/2008, 13:55   #11
 
The_Real_Slim_Shady's Avatar
 
elite*gold: 0
Join Date: May 2006
Posts: 170
Received Thanks: 8
man i need aguide on how to add the lab maps and the asventure zone maps in my pserver if u got post it pl ty
The_Real_Slim_Shady is offline  
Old 08/22/2008, 21:10   #12
 
Nickyy.'s Avatar
 
elite*gold: 0
Join Date: Jun 2007
Posts: 50
Received Thanks: 1
1: Fix the site........ -.-
2:Just make a New client.
Nickyy. is offline  
Old 08/24/2008, 14:25   #13
 
The_Real_Slim_Shady's Avatar
 
elite*gold: 0
Join Date: May 2006
Posts: 170
Received Thanks: 8
Quote:
(1) Open The COServerProject
(2) Open Client.cs (In COServerProject)
(3) If you search a little you see the text from the login text of the server
(4) Change the text to (look below)
(5) And Debug it.
man can u tell me how to debug it i would apreciate it very much ths
The_Real_Slim_Shady is offline  
Old 08/24/2008, 14:48   #14
 
elite*gold: 0
Join Date: Aug 2008
Posts: 211
Received Thanks: 184
Quote:
Originally Posted by The_Real_Slim_Shady View Post
man can u tell me how to debug it i would apreciate it very much ths
1. download Microsoft Visual C# Express Edition (Free on the Microsoft Website)
2. Open "COServerProject"
3. Press on Debug And Then Start Debugging.
Think-Fast is offline  
Old 08/24/2008, 17:22   #15
 
The_Real_Slim_Shady's Avatar
 
elite*gold: 0
Join Date: May 2006
Posts: 170
Received Thanks: 8
Quote:
1. download Microsoft Visual C# Express Edition (Free on the Microsoft Website)
2. Open "COServerProject"
3. Press on Debug And Then Start Debugging.
there are 2 COServerProject
man can u make a pics pls
The_Real_Slim_Shady is offline  
Reply


Similar Threads Similar Threads
Selling Account + Gears + Gears & More Gears @ Snowwhite!
06/29/2010 - Conquer Online 2 Trading - 1 Replies
Server: Cinderella/Snowwhite (Tro) Gears: Sup +6 SDG/SDG -5 Ears lvl 112 (102HP) Sup +6 SDG -5 130 Necky lvl 130 (130HP) Sup +6 SDG/SDG Blade lvl 130 (142HP) Sup +6 SDG/SDG -3 Trojan Armor lvl 120 (130HP) GoodLuck -1 Sup +6 SDG/SDG -5 Sword lvl 130 (225HP) Sup +6 SGG/SGG -1 Fan
[LOTF RELEASE] Ip Ban!!
05/18/2009 - CO2 PServer Guides & Releases - 22 Replies
Ip Ban! Credits to Ultimatum First...Search this ( It is in General.cs ) public static System.IO.StreamWriter sw = new System.IO.StreamWriter(Application.StartupPath + @"\ServerLog.txt", true);
[TIP]Fixing login freeze and MySQL problems on LOTF for sure!
05/08/2009 - CO2 Private Server - 12 Replies
Those who downloaded some sort of a LOTF source and get it to work, soon faces a problem: login freezes, portal freezes, etc. In the worst cases, even the character account data is corrupted. Well, as this is my first post on elitepvpers, I hope to do a rich contribution for ya all, because this forum helped me to create my own server and learn a new programming language. Well, let's work: What you need: - some CO server source installed and running (if you are reading this, you already...
[Release] Those still using LOTF
04/17/2009 - CO2 PServer Guides & Releases - 23 Replies
Help yourself be a better coder and listen to what the community is trying to say. One day you will understand why some are trying to encourage people still using LOTF to move to a more stable source and only use LOFT as a basis of learning and how you can improve (A LOT) on the LOTF coding. There's a lot of GREAT coding examples in InfamousNoone's source which you can actually learn from and gain a greater understanding of how a PROPER server operates. After all why do you think...
Login freezin bug in LOTF
09/18/2008 - CO2 Private Server - 53 Replies
The bug ISNT in the source! The bug IS in the MySQL system! How to fix it ? Get MySQL Gui toolz and Optimize the BUFFER Space and the Query Cache! TA DAA! FIXED How the get the right Values to fix it ? TRY IT! Can i use my Current source WITHOUT ANY EDIT IN THE SOURCE? YEEE!



All times are GMT +2. The time now is 07:43.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2024 elitepvpers All Rights Reserved.