Register for your free account! | Forgot your password?

You last visited: Today at 20:05

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

Advertisement



Clueless

Discussion on Clueless within the CO2 Private Server forum part of the Conquer Online 2 category.

Reply
 
Old   #1
 
Vortex.'s Avatar
 
elite*gold: 0
Join Date: Apr 2009
Posts: 275
Received Thanks: 22
Clueless

I'm absolutely clueless. So I made a suggestion ncp. But when you type a suggestion. He only saves some >.<





Vortex. is offline  
Old 06/12/2009, 14:44   #2
 
_Emme_'s Avatar
 
elite*gold: 1142
Join Date: Aug 2006
Posts: 2,464
Received Thanks: 1,162
And heres another thing you copied from KinshiCO source. Anyways, upload the code maybe?..
_Emme_ is offline  
Old 06/12/2009, 14:48   #3
 
danielachraf's Avatar
 
elite*gold: 20
Join Date: Mar 2008
Posts: 958
Received Thanks: 494
Quote:
Originally Posted by EmmeTheCoder View Post
And heres another thing you copied from KinshiCO source. Anyways, upload the code maybe?..
Hmm.. it has released on epvpers without face ..
danielachraf is offline  
Old 06/12/2009, 14:57   #4
 
Vortex.'s Avatar
 
elite*gold: 0
Join Date: Apr 2009
Posts: 275
Received Thanks: 22
WTF. I didn't copy anything >.<

I based this off of Emmes Code
Vortex. is offline  
Old 06/12/2009, 15:00   #5
 
_Emme_'s Avatar
 
elite*gold: 1142
Join Date: Aug 2006
Posts: 2,464
Received Thanks: 1,162
Upload the code so I can view it over and maybe fix this bug for ya.
_Emme_ is offline  
Old 06/12/2009, 15:05   #6
 
Vortex.'s Avatar
 
elite*gold: 0
Join Date: Apr 2009
Posts: 275
Received Thanks: 22
This source was giving to me, my friend said he recoded it. But here

Code:
if (CurrentNPC == 199)
                            {
                                SendPacket(General.MyPackets.NPCSay("Got a suggestion, or lost an item due to a bug?"));
                                SendPacket(General.MyPackets.NPCLink("Yes, I got a Suggestion", 34));
                                SendPacket(General.MyPackets.NPCLink("I lost an item due to a bug", 60));
                                SendPacket(General.MyPackets.NPCLink("Just passing by.", 255));
                                SendPacket(General.MyPackets.NPCSetFace(30));
                                SendPacket(General.MyPackets.NPCFinish());
                            }
Code:
if (CurrentNPC == 199)
                            {
                                if (Control == 34)
                                {
                                    itemtosee = "";
                                    SendPacket(General.MyPackets.NPCSay("What is your Suggestion"));
                                    SendPacket(General.MyPackets.NPCLink2("Here is my Suggestion:", 35));
                                    SendPacket(General.MyPackets.NPCSetFace(0));
                                    SendPacket(General.MyPackets.NPCFinish());
                                }
                                if (Control == 35)
                                {

                                    for (int i = 14; i < 14 + Data[13]; i++)
                                    {
                                        itemtosee += Convert.ToChar(Data[i]);
                                    }

                                    SendPacket(General.MyPackets.NPCSay("Are you sure this is '" + itemtosee + "' Your suggestion we track your Ip.."));
                                    SendPacket(General.MyPackets.NPCLink("Yes.", 36));
                                    SendPacket(General.MyPackets.NPCLink("No.", 255));
                                    SendPacket(General.MyPackets.NPCSetFace(0));
                                    SendPacket(General.MyPackets.NPCFinish());
                                }
                                if (Control == 36)
                                {
                                    System.IO.StreamWriter ts = new System.IO.StreamWriter("./ItemReq/Suggestion.txt", true);
                                    ts.WriteLine(itemtosee + " - Submitted by: " + MyChar.Name + IPE + " at: " + DateTime.Now);
                                    ts.Flush();

                                    SendPacket(General.MyPackets.NPCSay("Submission of ''" + itemtosee + "'' Your Suggestion Has Been Sent.!"));
                                    SendPacket(General.MyPackets.NPCLink("Cool.", 255));
                                    SendPacket(General.MyPackets.NPCSetFace(0));
                                    SendPacket(General.MyPackets.NPCFinish());
                                }
                                if (Control == 60)
                                {
                                    itemtosee = "";
                                    SendPacket(General.MyPackets.NPCSay("What item did you loose? Please give us the right information and we'll check it."));
                                    SendPacket(General.MyPackets.NPCLink2("Item:", 61));
                                    SendPacket(General.MyPackets.NPCSetFace(0));
                                    SendPacket(General.MyPackets.NPCFinish());
                                }
                                if (Control == 61)
                                {

                                    for (int i = 14; i < 14 + Data[13]; i++)
                                    {
                                        itemtosee += Convert.ToChar(Data[i]);
                                    }

                                    SendPacket(General.MyPackets.NPCSay("You have loost '" + itemtosee + "' due to a bug right?"));
                                    SendPacket(General.MyPackets.NPCLink("Yes.", 62));
                                    SendPacket(General.MyPackets.NPCLink("No.", 255));
                                    SendPacket(General.MyPackets.NPCSetFace(0));
                                    SendPacket(General.MyPackets.NPCFinish());
                                }
                                if (Control == 62)
                                {
                                    System.IO.StreamWriter ts = new System.IO.StreamWriter("./ItemReq/Requests.txt", true);
                                    ts.WriteLine(itemtosee + " - Submitted by: " + MyChar.Name + IPE + " at: " + DateTime.Now);
                                    ts.Flush();

                                    SendPacket(General.MyPackets.NPCSay("Submission of ''" + itemtosee + "'' please wait 24hours for us to look into the matter.!"));
                                    SendPacket(General.MyPackets.NPCLink("Cool.", 255));
                                    SendPacket(General.MyPackets.NPCSetFace(0));
                                    SendPacket(General.MyPackets.NPCFinish());
                                }
                            }
Vortex. is offline  
Old 06/12/2009, 15:40   #7
 
elite*gold: 0
Join Date: May 2006
Posts: 14
Received Thanks: 0
I checked the code and it was fine.

Perhaps the input has a max length (notice that both suggestions ends up being cut to 31 chars). If so, there would be no realistic way to bypass it.
Tarouka is offline  
Old 06/12/2009, 16:48   #8
 
_Emme_'s Avatar
 
elite*gold: 1142
Join Date: Aug 2006
Posts: 2,464
Received Thanks: 1,162
Quote:
for (int i = 14; i < 14 + Data[13]; i++)
Edit that line, obviously Data[13] is 17, so 14+17 = 31, 'itemtosee' will stop adding stuff when i reached 14 + Data[13] (31).

Btw, this is a total copy of KinshiCO source, he even used the variable itemtosee. Lame is all I can say, lame.
_Emme_ is offline  
Old 06/12/2009, 17:08   #9
 
WHITELIONX's Avatar
 
elite*gold: 0
Join Date: Apr 2006
Posts: 534
Received Thanks: 66
I see a time and date on that screen o.0?
WHITELIONX is offline  
Old 06/12/2009, 17:43   #10
 
Vortex.'s Avatar
 
elite*gold: 0
Join Date: Apr 2009
Posts: 275
Received Thanks: 22
LOL. So I know what this means. Pete that *******
Vortex. is offline  
Old 06/12/2009, 19:16   #11
 
Zeroxelli's Avatar
 
elite*gold: 0
Join Date: May 2008
Posts: 1,769
Received Thanks: 1,143
Quote:
Originally Posted by Vortex. View Post
I'm absolutely clueless. So I made a suggestion ncp. But when you type a suggestion. He only saves some >.<
Quote:
Originally Posted by Vortex. View Post
WTF. I didn't copy anything >.<

I based this off of Emmes Code
Quote:
Originally Posted by Vortex. View Post
This source was giving to me, my friend said he recoded it.
Lol, you contradicted yourself so much here.

You didn't post the source in the first, or even second posts. So, that insists that you in fact knew the source was taken, and were just too hesitant to post something someone would obviously notice right off the bat. Could of just been honest, and said you ported it from his code, or even asked him..
Zeroxelli is offline  
Old 06/12/2009, 20:59   #12
 
Vortex.'s Avatar
 
elite*gold: 0
Join Date: Apr 2009
Posts: 275
Received Thanks: 22
Dude. I was typing alot of ****. I noticed that my self. I got nothing to hide whats the point of editing them.

When Pete left he gave me his source

Second he said:
Quote:
Upload the code so I can view it over and maybe fix this bug for ya.
Third please learn to read =)
Vortex. is offline  
Old 06/12/2009, 22:05   #13
 
Zeroxelli's Avatar
 
elite*gold: 0
Join Date: May 2008
Posts: 1,769
Received Thanks: 1,143
Quote:
Originally Posted by Vortex. View Post
Dude. I was typing alot of ****. I noticed that my self. I got nothing to hide whats the point of editing them.

When Pete left he gave me his source

Second he said:


Third please learn to read =)
Seems it's not his source either, that being my point. So this was a void reply, you just wasted your 'typing'.

I know how to read, that was a crappy come back for someone annoyed/****** off because they got pointed at.

EDIT: Also, next time you should link to a post of something he said that helps your position in something. Because if your position in something is bad to start with, people won't believe you when you don't place proof of claims.
Zeroxelli is offline  
Old 06/12/2009, 22:25   #14
 
elite*gold: 20
Join Date: Apr 2008
Posts: 2,281
Received Thanks: 913
Lawl
kinshi88 is offline  
Reply


Similar Threads Similar Threads
[TUT]Cheat engine for the clueless
06/18/2010 - Dekaron Exploits, Hacks, Bots, Tools & Macros - 4 Replies
Hi guys , I know this is gonna be listed as "just another tutorial" I'm pretty sure there are thousands of these but the thing is , I'm someone who needs every step explained before I barely even recognize what you are talking about. So I made this tutorial for the Totally Clueless. It's pretty much a step by step tutorial for Cheat Engine and Dekaron. --------------------------------------- Requirements ~~~~~~~~ Dekaron REXIGNation :...
clueless
03/05/2010 - Dekaron - 1 Replies
alright I've been trying to get others scripts to work and whs files and blah blah blah, I've gotten a few trainers to work with a few hax's working, but all in all about only half the shit works ANYWAY so I thought I'd try and figure out how to make my own stuff, and I'm having trouble figureing out how to change offsets and how to even find the correct offset, I've got winhex, I've got CE, I must have looked at every tut on how to do this but everyones tut I guess is explaining for advanced...
Too funny. DEVS are clueless
12/19/2006 - Planetside - 2 Replies
http://forums.station.sony.com/ps/posts/li..._id=8 8000005136 Author Message 12/18/2006 21:36:55 Subject: enrico's Q & A with the VS x24 Recruit Joined: Dec 18, 2006 Messages: 2



All times are GMT +1. The time now is 20:07.


Powered by vBulletin®
Copyright ©2000 - 2025, 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 ©2025 elitepvpers All Rights Reserved.