Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~944 People Reached
Favorite Forums
Favorite Tags
Member Avatar for Sacky

OK so i've found some good offsets in Hex Workshop that i would like to modify (to 0's), could someone provide an example of how to do this via VB.NET automatically?

0
55
Member Avatar for Sacky

Well i'm trying to get the path from which my app was launched so when it gets an exception i can just handle it and restart it, the only solution to this that i found was getenv ( "PATH" ), however doing this yields this: [QUOTE][Sat Apr 28 19:29:37 2007](null)/gtamp.cfg[/QUOTE] …

Member Avatar for Salem
0
83
Member Avatar for Sacky

Well i'm trying to implement pawn into my app (pawn the embedded scripting language) and while including the amxprocess.c i get these errors: [QUOTE]Error 1 error C2708: 'push' : actual parameters length in bytes differs from previous call or reference 524 Error 2 error C2708: 'push' : actual parameters length …

Member Avatar for Sacky
0
102
Member Avatar for Sacky

I'm trying to compile some rather trivial code in C++ and i keep getting "Warning: [FUNCTION] was declared deprecated" Now this is on some of the more useful functions such as: sprintf strtok why is this? Here is a sample of my code if you are interested: [CODE]if(IsChatting()){ char chat[256]; …

Member Avatar for Narue
0
494
Member Avatar for Sacky

I was having some compile errors with my code, along the lines of this: [CODE]Error 1 error LNK2001: unresolved external symbol "class _CD3D * __cdecl GetD3DClass(void)" (?GetD3DClass@@YAPAV_CD3D@@XZ) DLLBot.obj[/CODE] After some reasearch i found that the problem was directly due to this line: [CODE]class _CD3D { public: void __stdcall CustomSetTransform(D3DTRANSFORMSTATETYPE State, …

Member Avatar for Sacky
0
86
Member Avatar for Sacky

Ok i have this code to download some data [CODE] [COLOR=#00007f]Private[/COLOR] [COLOR=#00007f]Sub[/COLOR] Getfiles_Click([COLOR=#00007f]ByVal[/COLOR] sender [COLOR=#00007f]As[/COLOR] System.[COLOR=#00007f]Object[/COLOR], [COLOR=#00007f]ByVal[/COLOR] e [COLOR=#00007f]As[/COLOR] System.EventArgs) [COLOR=#00007f]Handles[/COLOR] Getfiles.Click Webbrowser.Navigate([COLOR=#00007f]New[/COLOR] System.Uri("http://mail.google.com/mail/feed/atom")) [COLOR=#00007f]Dim[/COLOR] Net [COLOR=#00007f]As[/COLOR] [COLOR=#00007f]New[/COLOR] System.Net.WebClient AtomFeed = System.Text.Encoding.ASCII.GetString(Net.DownloadData("http://mail.google.com/mail/feed/atom")) Atomfeedtext.Text = AtomFeed [COLOR=#00007f]End[/COLOR] [COLOR=#00007f]Sub[/COLOR] [/CODE] Every Time i run it i get a 401 Unauthorised Error I …

Member Avatar for Sacky
0
124