any harvesting macros/bots out

01/05/2009 16:12 MMO_Itachi#16
the auto walk would work but unfortunately you cant "target" the actual material... if you could do that making a bot wouldnt be hard but i cant get a value for the material.... can get one for harvesting and not harvesting but that does me no good... if any of you bot makers out there figure out how to get the material's datapoint value or even have an idea post it here so i can test it... if we do then i may be able to make a bot on it =D
01/10/2009 23:52 11lol11#17
well i think if there is a possibility to unpack/repack those fdb files in the fdb folder. it wouldnt be a problem to create a harvesting bot. ^^
cause i think with reediting the textures for the materials it would be easy to create a pixel bot ^^

so if someone know how to unpack that stuff it would be great if he/she would post it here ^^
01/10/2009 23:58 Atheuz#18
Quote:
Originally Posted by 11lol11 View Post
well i think if there is a possibility to unpack/repack those fdb files in the fdb folder. it wouldnt be a problem to create a harvesting bot. ^^
cause i think with reediting the textures for the materials it would be easy to create a pixel bot ^^

so if someone know how to unpack that stuff it would be great if he/she would post it here ^^
You don't really need to be able to extract fdb files todo that...

[Only registered and activated users can see links. Click Here To Register...]
01/11/2009 00:02 11lol11#19
woooh.... what the hell is there a tutorial how to do that? :D ....
i'd like to know to do that. already searched this forum for "texture hack" and so on but without results, that would help me
01/11/2009 08:46 SteiniKeule#20
würd auch gerne wissen wie du das gemacht hast
01/11/2009 13:23 11lol11#21
i think it would be possible to do that with cheatengine but my game always crashes everytime i try to hook into it. i tried xp 32bit and vista 64bit but both did not work for me.

@steinikeule
versuchs mal mit cheatengine und da über die directx mess funktion. hat bei mir leider nicht so recht geklappt aber ich denke damit könnte es möglich sein rom auf das zu reduzieren, was antheuz abgebildet hat
01/11/2009 14:20 Atheuz#22
Quote:
Originally Posted by 11lol11 View Post
i think it would be possible to do that with cheatengine but my game always crashes everytime i try to hook into it. i tried xp 32bit and vista 64bit but both did not work for me.

@steinikeule
versuchs mal mit cheatengine und da über die directx mess funktion. hat bei mir leider nicht so recht geklappt aber ich denke damit könnte es möglich sein rom auf das zu reduzieren, was antheuz abgebildet hat
Ich weiß nicht ob Cheat Engine SetTransformation oder CreateVertex für das ESP hookt.

Ansonsten;

Code:
		if(dMaterials)
		{
			hook = true;
			DWORD dwOldZEnable = D3DZB_TRUE;
			m_pD3Ddev->SetTexture(0, texGreen);
			m_pD3Ddev->SetRenderState(D3DRS_FILLMODE,D3DFILL_SOLID);
			m_pD3Ddev->GetRenderState(D3DRS_ZENABLE, &dwOldZEnable);
			m_pD3Ddev->SetRenderState(D3DRS_ZENABLE, D3DZB_FALSE);
			m_pD3Ddev->DrawIndexedPrimitive(Type, BaseVertexIndex, MinVertexIndex, NumVertices, startIndex, primCount);
			m_pD3Ddev->SetRenderState(D3DRS_ZENABLE, dwOldZEnable);
			m_pD3Ddev->SetTexture(0, texRed);
			m_pD3Ddev->SetRenderState(D3DRS_FILLMODE,D3DFILL_SOLID);
		}
                else
                {
                return S_OK;
                }
Aus Kompabilitätsgründen habe ich Texturen genommen, man kann auch Shader verwenden um eine durchgehende, Rote Farbe zu haben.

Code:
#define dMaterials ((m_Stride == 32 && NumVertices == 43 && primCount == 78) || (m_Stride == 32 && NumVertices == 308 && primCount == 450) || (m_Stride == 32 && NumVertices == 199 && primCount == 360) || (m_Stride == 32 && NumVertices == 176 && primCount == 108) || (m_Stride == 32 && NumVertices == 594 && primCount == 471) || (m_Stride == 32 && NumVertices == 234 && primCount == 324) || (m_Stride == 32 && NumVertices == 811 && primCount == 784) || (m_Stride == 32 && NumVertices == 135 && primCount == 132) || (m_Stride == 32 && NumVertices == 194 && primCount == 136) || (m_Stride == 32 && NumVertices == 126 && primCount == 240))
Sind die ganzen Materialien für die Varansas & Logar Gebiete.
01/12/2009 12:15 SteiniKeule#23
Quote:
Originally Posted by Atheuz View Post
Ich weiß nicht ob Cheat Engine SetTransformation oder CreateVertex für das ESP hookt.

Ansonsten;

Code:
		if(dMaterials)
		{
			hook = true;
			DWORD dwOldZEnable = D3DZB_TRUE;
			m_pD3Ddev->SetTexture(0, texGreen);
			m_pD3Ddev->SetRenderState(D3DRS_FILLMODE,D3DFILL_SOLID);
			m_pD3Ddev->GetRenderState(D3DRS_ZENABLE, &dwOldZEnable);
			m_pD3Ddev->SetRenderState(D3DRS_ZENABLE, D3DZB_FALSE);
			m_pD3Ddev->DrawIndexedPrimitive(Type, BaseVertexIndex, MinVertexIndex, NumVertices, startIndex, primCount);
			m_pD3Ddev->SetRenderState(D3DRS_ZENABLE, dwOldZEnable);
			m_pD3Ddev->SetTexture(0, texRed);
			m_pD3Ddev->SetRenderState(D3DRS_FILLMODE,D3DFILL_SOLID);
		}
                else
                {
                return S_OK;
                }
Aus Kompabilitätsgründen habe ich Texturen genommen, man kann auch Shader verwenden um eine durchgehende, Rote Farbe zu haben.

Code:
#define dMaterials ((m_Stride == 32 && NumVertices == 43 && primCount == 78) || (m_Stride == 32 && NumVertices == 308 && primCount == 450) || (m_Stride == 32 && NumVertices == 199 && primCount == 360) || (m_Stride == 32 && NumVertices == 176 && primCount == 108) || (m_Stride == 32 && NumVertices == 594 && primCount == 471) || (m_Stride == 32 && NumVertices == 234 && primCount == 324) || (m_Stride == 32 && NumVertices == 811 && primCount == 784) || (m_Stride == 32 && NumVertices == 135 && primCount == 132) || (m_Stride == 32 && NumVertices == 194 && primCount == 136) || (m_Stride == 32 && NumVertices == 126 && primCount == 240))
Sind die ganzen Materialien für die Varansas & Logar Gebiete.


schön und gut deine codes ^^ aber was soll ich damit machen? wo müssen die hin?
01/12/2009 15:16 Atheuz#24
Quote:
Originally Posted by SteiniKeule View Post
schön und gut deine codes ^^ aber was soll ich damit machen? wo müssen die hin?
In das Pokemon Cheat-Menü, /facepalm.
01/12/2009 21:46 SteiniKeule#25
Quote:
Originally Posted by Atheuz View Post
In das Pokemon Cheat-Menü, /facepalm.
kannst du mir vll genau sagen mit welchem prog. du das machst? und wie.... thx
01/13/2009 14:25 11lol11#26
erm das is ein stück quellcode für c++ (wenn ich mich irre bitte verbessern) und das kannse dafür benutzen um nen programm hook für rom zu erstellen, damit der nur noch bestimmte sachen mit bestimmten texturen rendert mal ganz grob gesagt. das kannse net einfahc iwo hinpacken, erst recht net wenn du nichteinmal weißt wofür es gut is ^^'...
01/21/2009 03:54 ketamine69#27
Quote:
Originally Posted by Atheuz View Post
Ich weiß nicht ob Cheat Engine SetTransformation oder CreateVertex für das ESP hookt.

Ansonsten;

Code:
		if(dMaterials)
		{
			hook = true;
			DWORD dwOldZEnable = D3DZB_TRUE;
			m_pD3Ddev->SetTexture(0, texGreen);
			m_pD3Ddev->SetRenderState(D3DRS_FILLMODE,D3DFILL_SOLID);
			m_pD3Ddev->GetRenderState(D3DRS_ZENABLE, &dwOldZEnable);
			m_pD3Ddev->SetRenderState(D3DRS_ZENABLE, D3DZB_FALSE);
			m_pD3Ddev->DrawIndexedPrimitive(Type, BaseVertexIndex, MinVertexIndex, NumVertices, startIndex, primCount);
			m_pD3Ddev->SetRenderState(D3DRS_ZENABLE, dwOldZEnable);
			m_pD3Ddev->SetTexture(0, texRed);
			m_pD3Ddev->SetRenderState(D3DRS_FILLMODE,D3DFILL_SOLID);
		}
                else
                {
                return S_OK;
                }
Aus Kompabilitätsgründen habe ich Texturen genommen, man kann auch Shader verwenden um eine durchgehende, Rote Farbe zu haben.

Code:
#define dMaterials ((m_Stride == 32 && NumVertices == 43 && primCount == 78) || (m_Stride == 32 && NumVertices == 308 && primCount == 450) || (m_Stride == 32 && NumVertices == 199 && primCount == 360) || (m_Stride == 32 && NumVertices == 176 && primCount == 108) || (m_Stride == 32 && NumVertices == 594 && primCount == 471) || (m_Stride == 32 && NumVertices == 234 && primCount == 324) || (m_Stride == 32 && NumVertices == 811 && primCount == 784) || (m_Stride == 32 && NumVertices == 135 && primCount == 132) || (m_Stride == 32 && NumVertices == 194 && primCount == 136) || (m_Stride == 32 && NumVertices == 126 && primCount == 240))
Sind die ganzen Materialien für die Varansas & Logar Gebiete.
so u made a bot for gathering ? can u explain in english pls ! ty
01/21/2009 06:58 HIGHlow#28
yes plz explain to us and what language are u using for that script? micromacro? autoit? Tools?
01/21/2009 12:35 Atheuz#29
Quote:
Originally Posted by ketamine69 View Post
so u made a bot for gathering ? can u explain in english pls ! ty
No, I did not.
02/20/2009 19:19 eldorithna#30
Wie funzt denn WorldMap_AutoMove(); genau?
/script WorldMap_AutoMove(x,y); geht wohl nich (wenn y+y jeweils nen wert haben...
kann mir da mal wer des Brett vorm kopp wegnehmen?
Danke