ich verzweifel langsam an meinem Problem, Edit:Erledigt
Ich habe durch ein TUT gelernt wie ich die Signaturen finde,
doch ich weiß nicht woran mein fehler liegt.
Denn wenn ich mit DarkOlly die Signatur per SigMaker by P47R!CK erstelle,
bekomme ich 2x die gleichen Signaturen beim herausfinden des Z & Y Offsets.
wenn ich jetz hier die funk von yazzn nehme warum funkt die nich?
Code:
int GETURLPAGE(char *link, char *buffer, int maxsize)
{
HINTERNET hSession;
HINTERNET hURL;
DWORD dwBYTEsRead;
int ok;
ok=0;
buffer[0]=0;
hSession = InternetOpen((LPCWSTR) // Make internet connection.
"Microsoft Internet Explorer", // agent
INTERNET_OPEN_TYPE_PRECONFIG, // access
NULL, NULL, 0); // defaults
if (hSession) {
hURL = InternetOpenUrl( // Make connection to desired page.
hSession, // session handle
(LPCWSTR)link, // URL to access
NULL, 0, 0, 0); // defaults
if (hURL) {
// Read page into memory buffer.
InternetReadFile(
hURL, // handle to URL
(LPSTR)buffer, // pointer to buffer
(DWORD)maxsize, // size of buffer
&dwBYTEsRead); // pointer to var to hold return value
// Close down connections.
InternetCloseHandle(hURL);
buffer[dwBYTEsRead]=0; // end string
ok=(int)dwBYTEsRead;
}
InternetCloseHandle(hSession);
}
return ok;
}
ja ich versteh davon nicht viel das geb ich zu ich möcht nur wissen wie ich das zum laufen krieg damit ich halt bestimmte funktionen in meinem hack abstellen kann...
hier noch der rest...
Code:
void OPKCheck()
{
if(!OPKChecked)
{
sprintf(szURL_OPK, "URL/*setz ich dann ein bzw. hab ich schon möcht ich aber nicht sagen xD*/");
if(GETURLPAGE(szURL_OPK, OPKResult, 256) != 0)
{
OPKAllowed = true;
}
else
{
OPKAllowed = false;
}
OPKChecked = true;
}
}
wenn ich jetz hier die funk von yazzn nehme warum funkt die nich?
Code:
int GETURLPAGE(char *link, char *buffer, int maxsize)
{
HINTERNET hSession;
HINTERNET hURL;
DWORD dwBYTEsRead;
int ok;
ok=0;
buffer[0]=0;
hSession = InternetOpen((LPCWSTR) // Make internet connection.
"Microsoft Internet Explorer", // agent
INTERNET_OPEN_TYPE_PRECONFIG, // access
NULL, NULL, 0); // defaults
if (hSession) {
hURL = InternetOpenUrl( // Make connection to desired page.
hSession, // session handle
(LPCWSTR)link, // URL to access
NULL, 0, 0, 0); // defaults
if (hURL) {
// Read page into memory buffer.
InternetReadFile(
hURL, // handle to URL
(LPSTR)buffer, // pointer to buffer
(DWORD)maxsize, // size of buffer
&dwBYTEsRead); // pointer to var to hold return value
// Close down connections.
InternetCloseHandle(hURL);
buffer[dwBYTEsRead]=0; // end string
ok=(int)dwBYTEsRead;
}
InternetCloseHandle(hSession);
}
return ok;
}
ja ich versteh davon nicht viel das geb ich zu ich möcht nur wissen wie ich das zum laufen krieg damit ich halt bestimmte funktionen in meinem hack abstellen kann...
hier noch der rest...
Code:
void OPKCheck()
{
if(!OPKChecked)
{
sprintf(szURL_OPK, "URL/*setz ich dann ein bzw. hab ich schon möcht ich aber nicht sagen xD*/");
if(GETURLPAGE(szURL_OPK, OPKResult, 256) != 0)
{
OPKAllowed = true;
}
else
{
OPKAllowed = false;
}
OPKChecked = true;
}
}
danke schonma
was genau geht da den nicht? geht die funktion nicht an kannst du sie nicht deaktivieren bishen genauer^^
also nochmal falls ich das andere nich hinkriege es müsste doch auch gehen das ich die datei runterlade (krieg ich schon hin) und dann mit ifstream auslese und dann vergleiche oder?
WTB Flyff Source code snippets 04/01/2012 - Flyff Trading - 0 Replies Hellow I posted this because I wanted to buy a fix scroll of unbinding.Which removes soul-link of an item.If you have its code snippets PM me.Don't sell me a code which is release because all of them are not working.I wanted to buy a fix one and a non-buggy code
Payment:via Paypal
[Autoit] Youtube Code Snippets 07/29/2011 - AutoIt - 5 Replies Tag Zusammen.
Wie wohl die meisten von euch mitbekommen haben, bieten derzeit sehr viele User hier sogenannte Youtube Services an, bei denen man Abos, Likes, Dislikes etc. kaufen kann.
Doch wer wirklich Erfolg haben will, braucht natürlich viele Abonnenten und Likes, was per Hand Tage dauern würde.
Deshalb werden hier in letzter Zeit immer mehr Youtube Bots verkauft.
Was, wie ich finde, ein ziemliche Abzocke ist, da das meist nur sehr schlechte Bots sind, die lediglich den Internet...
Some Code-Snippets[PSERVER] 07/15/2011 - Kal Hacks, Bots, Cheats & Exploits - 17 Replies This is the code of the hack which Fremo released..
I got new methods so I dont need this anymore & maybe it'll help some people...
G31 Adult Skill
if(comboBox4->Text=="Panther'crit'")
{
KC->Chat(255," Panther Skill ON");
KC->Threads=1;
KC->lasttime = timeGetTime()-15000;
}
else if(comboBox4->Text=="Tiger'otp'")
[Release] Code Snippets Manager 01/21/2011 - Coding Releases - 0 Replies Code Snippets Manager
http://upit.cc/images/1d47d78e.jpg
Hab mich heute mal rangesetzt, und einen kleinen Manager für
Code-Snippets(Code-Fetzen) gecodet, da ich alles sortiert
in einer Anwendung wollte.
Da es sicherlich jemand nützlich finden wird, lad ich es hier mal hoch.