@xCeManx
yes it is possible
you just need to find the startaddress of the messagebox subroutine
and you just need to push the text and to call the startaddress
if (CH_Fllbrght)
{
pDevice->SetRenderState(D3DRS_LIGHTING, false);
pDevice->SetRenderState(D3DRS_AMBIENT,D3DCOLOR_ARGB(255, 255,255,255));}
else
{pDevice->SetRenderState(D3DRS_AMBIENT, false);}
Does not work. I added to the database NoMenu this code:
void FullBright()
{
*(int*)ADR_FLBRGHT1 = 1092779973;
*(int*)ADR_FLBRGHT2 = 1092779973;
*(int*)ADR_FLBRGHT3 = 1092779973;
}
@xCeManx
yes it is possible
you just need to find the startaddress of the messagebox subroutine
and you just need to push the text and to call the startaddress
Depends on its calling convention, most likely to be cdecl. Then you would have to clean the stack yourself. At least I vaguely remember that thing to be as stated.
Depends on its calling convention, most likely to be cdecl. Then you would have to clean the stack yourself. At least I vaguely remember that thing to be as stated.
you'll need to add something like
add esp, [size_of_arguments_in_bytes]
after the call, if it's the cdecl convention, which is the default calling convention in c++. but: keep in mind the WinAPI has been written in c/c# using the stdcall convention.
Incrementing the stack pointer - what you are doing by adding the params' size to esp - is nothing else then what I meant with "cleaning the stack"
There's a little difference: pop gets from stack and decrements esp by the popped arguments size , push adds to the stack and increments the stack pointer. Incrementing the stack pointer needs to be done to let the next call be able to know where it needs to start to pop from stack. A stack is a so called LILO-structure (last-in, last-out).
The stack itself cannot be cleaned by either of these commands.
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.