Register for your free account! | Forgot your password?

Go Back   elitepvpers > General Gaming > General Gaming Discussion
You last visited: Today at 14:03

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

Advertisement



any harvesting macros/bots out

Discussion on any harvesting macros/bots out within the General Gaming Discussion forum part of the General Gaming category.

Reply
 
Old 01/05/2009, 16:12   #16
 
elite*gold: 0
Join Date: Mar 2008
Posts: 12
Received Thanks: 4
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
MMO_Itachi is offline  
Old 01/10/2009, 23:52   #17
 
elite*gold: 0
Join Date: Jul 2007
Posts: 4
Received Thanks: 0
fdb

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 ^^
11lol11 is offline  
Old 01/10/2009, 23:58   #18
 
Atheuz's Avatar
 
elite*gold: 81
Join Date: Jul 2005
Posts: 1,921
Received Thanks: 2,239
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...

Atheuz is offline  
Old 01/11/2009, 00:02   #19
 
elite*gold: 0
Join Date: Jul 2007
Posts: 4
Received Thanks: 0
woooh.... what the hell is there a tutorial how to do that? ....
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
11lol11 is offline  
Old 01/11/2009, 08:46   #20
 
elite*gold: 0
Join Date: Jan 2008
Posts: 43
Received Thanks: 7
würd auch gerne wissen wie du das gemacht hast
SteiniKeule is offline  
Old 01/11/2009, 13:23   #21
 
elite*gold: 0
Join Date: Jul 2007
Posts: 4
Received Thanks: 0
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
11lol11 is offline  
Old 01/11/2009, 14:20   #22
 
Atheuz's Avatar
 
elite*gold: 81
Join Date: Jul 2005
Posts: 1,921
Received Thanks: 2,239
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.
Atheuz is offline  
Thanks
1 User
Old 01/12/2009, 12:15   #23
 
elite*gold: 0
Join Date: Jan 2008
Posts: 43
Received Thanks: 7
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?
SteiniKeule is offline  
Old 01/12/2009, 15:16   #24
 
Atheuz's Avatar
 
elite*gold: 81
Join Date: Jul 2005
Posts: 1,921
Received Thanks: 2,239
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.
Atheuz is offline  
Old 01/12/2009, 21:46   #25
 
elite*gold: 0
Join Date: Jan 2008
Posts: 43
Received Thanks: 7
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
SteiniKeule is offline  
Old 01/13/2009, 14:25   #26
 
elite*gold: 0
Join Date: Jul 2007
Posts: 4
Received Thanks: 0
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 ^^'...
11lol11 is offline  
Old 01/21/2009, 03:54   #27
 
ketamine69's Avatar
 
elite*gold: 0
Join Date: Mar 2008
Posts: 16
Received Thanks: 4
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
ketamine69 is offline  
Old 01/21/2009, 06:58   #28
 
elite*gold: 0
Join Date: May 2005
Posts: 18
Received Thanks: 0
yes plz explain to us and what language are u using for that script? micromacro? autoit? Tools?
HIGHlow is offline  
Old 01/21/2009, 12:35   #29
 
Atheuz's Avatar
 
elite*gold: 81
Join Date: Jul 2005
Posts: 1,921
Received Thanks: 2,239
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.
Atheuz is offline  
Old 02/20/2009, 19:19   #30
 
elite*gold: 0
Join Date: Dec 2008
Posts: 13
Received Thanks: 0
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
eldorithna is offline  
Reply


Similar Threads Similar Threads
[Guide] Harvesting
07/18/2008 - General Gaming Releases - 0 Replies
1. When can I learn to harvest? As soon as you hit level 20 you are eligible to learn how to harvest the first nodes. 2. Where can I learn to harvest? As an Aquilonian you leave Tortage and are shipped to Old Tarantia. Take the East Gate and Follow the wooden wall all the way to the dead end. Speak with Wagonneer Mycus . Once in the Wild Lands take the road North in Tesso and travel up to the Outcast Camp. Over a slight incline to the upper left of the village near a small...
What about an auto harvesting bot?
03/15/2008 - Perfect World - 6 Replies
Something like: - place the char into a high spawning harvesteable - start the bot - he harvest everything and the wait for the new spawns checking every 5 secs or every 10 secs if there's a new harvesteable to get ;) This would make the happyness for every crafter or newbie crafter (like me xD) In every case, thx for all of the work on aggrobot and ZPWBOT ;) F4Bz
Harvesting Exploit
05/02/2006 - General Gaming Discussion - 0 Replies
Lately I've been harvesting and when I see other people come up or i see a node way out of reach above me or in an area that will not let me harvest. I click on one node to start harvesting it and then click the other one or tab to it and it continues to harvest from the node that i clicked on, not the one that I started from. I find this extremly useful in harvesting in the T6 Croc caves. This does not work on different types of nodes though .. aka harvesting vs mining.. doesnt...
Looking for harvesting bot
09/29/2005 - Final Fantasy XI - 1 Replies
hi i am looking for a harvesting bot but i dont found on.. could you help me to get one? and there are a little bit comlicated, so i need one with easy use function... ok thank you!!!
Logging/mining/harvesting bot?
09/29/2005 - Final Fantasy XI - 1 Replies
Hello i am looking for a bot who can replace me in logging OR mining Or Harvesting its very very boring to do the same thing the whole day /hour/ second spot to spot the same , again and again that sucks!!! i hope for helping me at this point...!! thank you!!!



All times are GMT +2. The time now is 14:03.


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