|
You last visited: Today at 05:09
Advertisement
[Suche]Cs Pet filter
Discussion on [Suche]Cs Pet filter within the Flyff Private Server forum part of the Flyff category.
02/26/2011, 14:06
|
#46
|
elite*gold: 0
Join Date: Jun 2008
Posts: 302
Received Thanks: 69
|
Warum ignoriert das Pet meine einstellungen?
|
|
|
02/26/2011, 15:31
|
#47
|
elite*gold: 0
Join Date: Jul 2009
Posts: 21
Received Thanks: 13
|
@philli:
versuchs mal damit:
BOOL CAIPet::SubItemLoot( void )
{
CMover* pMover = GetMover();
CMover* pOwner = prj.GetMover( m_idOwner );
CWorld* pWorld = GetWorld();
MoverProp *pProp = pMover->GetProp();
D3DXVECTOR3 vPos = pMover->GetPos();
CObj *pObj = NULL;
int nRange = 0;
D3DXVECTOR3 vDist;
FLOAT fDistSq, fMinDist = 9999999.0f;
CObj *pMinObj = NULL;
vDist = pOwner->GetPos() - pMover->GetPos();
fDistSq = D3DXVec3LengthSq( &vDist );
if( fDistSq > 32.0f * 32.0f ) // ÁÖÀδ԰úÀÇ °Å¸®°¡ 32¹ÌÅͰ¡ ³ÑÀ¸¸é ¾ÆÀÌÅÛ ¾ÈÁý´Â´Ù.
return FALSE;
if( pOwner && pOwner->IsFly() )
return FALSE;
// ±ÙóÀÇ ¾ÆÀÌÅÛÀ» °Ë»öÇÔ. - ÁÖÀδԲ¨¸¸ °Ë»öÇØ¾ßÇÒµí...
FOR_LINKMAP( pWorld, vPos, pObj, nRange, CObj::linkDynamic, pMover->GetLayer() )
{
if( pObj->GetType() == OT_ITEM ) // ¾ÆÅÛ¸¸ °Ë»ö
{
CItem *pItem = (CItem *)pObj;
ItemProp* pItemProp = pItem->GetProp();
// ÀÌ°É µû·Î ³ÖÀºÀÌÀ¯´Â StateIdle ARRIVAL¿¡¼* DoLoot()ÇÏ°í ³*Á÷ÈÄ¿¡ ´Ù½Ã SubItemLoot()À» È£ÃâÇßÀ»¶§
// LootÇÑ ¾ÆÀÌÅÛÀÌ ¾ÆÁ÷ ¾ÈÁö¿öÁ®¼* ¿©±â¼* ¶Ç °Ë»öÀÌ µÇ´õ¶ó°í.. ±×·¡¼* Áߺ¹µÇ´Â ¾ÆÀÌÅÛÀº °Ë»ö ¾ÈµÇ°Ô °íÃĺôÙ.
// if( pItem->GetId() != m_idLootItem )
if( pItem->IsDelete() == FALSE )
{
if( pItemProp )
{
BOOL b1 = TRUE;
#ifdef __WORLDSERVER
#ifdef __ADV_PET_COLLECTION
// ReferStat = PET_VIS
try
{
if(pOwner->HasActivatedVisPet())
{
//Error("Kind1: %i,Kind2: %i,Kind3: %i; pMover->m_pActMover-
>bQuestItem: %i", (int) pItemProp->dwItemKind1, (int) pItemProp->dwItemKind2, (int) pItemProp->dwItemKind3, (int)pMover->m_pActMover->bQuestItem);
// BYTE cQuestItem , cWeapons , cArmor , cCards , cDrinks, cEggs, cStones , cAccessory
if (!pOwner->bQuestItem && pItemProp->dwItemKind1 == IK1_GENERAL && pItemProp->dwItemKind2
== IK2_GEM && pItemProp->dwItemKind3 == IK3_GEM)
b1 = FALSE;
else if(!pOwner->bWeapons && pItemProp->dwItemKind1 == IK1_WEAPON)
b1 = FALSE;
else if(!pOwner->bArmor && pItemProp->dwItemKind1 == IK1_ARMOR)
b1 = FALSE;
else if(!pOwner->bCards && pItemProp->dwID != II_GEN_MAT_SUP_GURU && pItemProp-
>dwItemKind1 == IK1_GENERAL && pItemProp->dwItemKind2 == IK2_MATERIAL && pItemProp->dwItemKind3 != IK3_ULTIMATE && pItemProp->dwItemKind3 != IK3_ENCHANT
&& pItemProp->dwItemKind3 != IK3_PIERDICE)
b1 = FALSE;
else if(!pOwner->bFood && pItemProp->dwItemKind1 == IK1_GENERAL && (pItemProp->dwItemKind2
== IK2_FOOD || pItemProp->dwItemKind2 == IK2_REFRESHER || pItemProp->dwItemKind2 == IK2_POTION))
b1 = FALSE;
else if(!pOwner->bEggs && pItemProp->dwItemKind1 == IK1_GENERAL && pItemProp->dwItemKind2
== IK2_GENERAL && pItemProp->dwItemKind3 == IK3_EGG)
b1 = FALSE;
else if(!pOwner->bStones && pItemProp->dwItemKind1 == IK1_GENERAL && pItemProp-
>dwItemKind2 == IK2_MATERIAL && (pItemProp->dwItemKind3 == IK3_PIERDICE || pItemProp->dwItemKind3 == IK3_ENCHANT || pItemProp->dwItemKind3 == IK3_ULTIMATE
|| pItemProp->dwItemKind3 == IK3_SUPSTONE))
b1 = FALSE;
else if(!pOwner->bAccessory && pItemProp->dwItemKind1 == IK1_GENERAL && pItemProp-
>dwItemKind2 == IK2_JEWELRY)
b1 = FALSE;
if(pItemProp->dwID == II_GEN_MAT_SUP_GURU)
b1 = TRUE;
}
}
catch ( ... )
{
Error("Caught Exception at line 177 in file AIPet.cpp!");
}
#endif
#endif
if( pOwner->IsLoot( pItem, TRUE ) ) // ·çÆÃµÇ´Â¾ÆÀÌÅÛÀÎÁö °Ë»çÇÔ.
{
vDist = pObj->GetPos() - pMover->GetPos();
fDistSq = D3DXVec3LengthSq( &vDist ); // °Å¸® ±¸ÇÔ.
if( fDistSq < 15 * 15 && fDistSq < fMinDist ) // 10¹ÌÅÍ À̳»°í... °¡Àå °Å¸®°¡ °¡±î¿î ¾ÆÅÛÀ» ãÀ½.
pMinObj = pObj;
}
}
}
}
}
END_LINKMAP
if( pMinObj )
{
// Get object ID of the loot item
DWORD dwIdLootItem = ((CItem *)pMinObj)->GetId();
// Get the item obj
CCtrl *pCtrl = prj.GetCtrl( dwIdLootItem );
// if exists...
if( IsValidObj(pCtrl) )
{
MoveToDst( pMinObj->GetPos() ); // ¸ñÇ¥ÂÊÀ¸·Î À̵¿.
m_idLootItem = dwIdLootItem;
m_bLootMove = TRUE;
}
}
return m_bLootMove;
}
@alfredico:
ty ...
you need to paste it in the last line
@alle, weil ich keinen doppelpost machen soll
soll ich die files hochladen, weil ich hab jetzt die errors gefixt (Aipet is auch eingefügt)
|
|
|
03/30/2012, 17:52
|
#48
|
elite*gold: 0
Join Date: Feb 2008
Posts: 8
Received Thanks: 1
|
Habe alles eingebaut. Compilen geht...
Wie öffnet man das Einstellungsfenster?
Sry für die Noob-Frage
|
|
|
03/30/2012, 18:09
|
#49
|
ベトナム警察
elite*gold: 0
Join Date: Jan 2012
Posts: 16,498
Received Thanks: 3,525
|
Siehe Datum. 
Wenn du Ingame bist drückst du 'U', dann öffnet sich das Teil.
#Closerequest.
|
|
|
03/30/2012, 23:37
|
#50
|
elite*gold: 18
Join Date: Sep 2009
Posts: 20,174
Received Thanks: 14,475
|
#Closed
|
|
|
 |
|
Similar Threads
|
WPE Pro - Dupe Filter + Tutorial + Klassen Filter Download (3.3.3a & 3.3.5)
03/27/2012 - WoW PServer Exploits, Hacks & Tools - 165 Replies
WPE Pro - Dupe Filter + Tutorial + Klassen Filter Download (3.3.3a & 3.3.5)
Hier stelle ich euch mal eine tolle Filter Sammlung für WPE rein. Warum ich das reinstelle? Weil ich das im Inet gefunden habe und vielen die Arbeit ersparen will was ich in der letzten Woche hier hatte und immer noch zu keinem Ziel gekommen bin. Das Packet ist Viren frei, habe es selber gepackt, ihr könnt gern nachprüfen weil ich weis nicht wie das funktioniert.
Download:
WPE Pro - Dupe Filter + Tutorial +...
|
[SUCHE]Pickup-Bot mit Filter
02/18/2012 - Metin2 Private Server - 2 Replies
Hi, ihr kennt das bestimmt auch. Man farmt etwas aufm P-Server, aber man droppt so viel Scheiße auf einmal, dass man nichts mehr sieht!
Suche deshalb nen Pickup-Bot mit Filter. Z.b. dass man einstellen kann, dass er nur Unbekannte alte Kisten aufnehmen soll etc.
Würde das mit EasyMetin funktionieren? Bräuchte man da nen 2010er Clienten?
Weiß nicht so recht^^
also für hilfreiche Antworten gibts THX! Achja Downloadlinks bitte per PN ^^
|
WoW wpe pro filter suche
12/24/2010 - WoW PServer Exploits, Hacks & Tools - 4 Replies
ich suche ein filter um zornerfülltgegenstände zu kaufen
gibts da was ?
|
Suche WPE Pro Filter für krieger 3.3.5
09/21/2010 - WoW PServer Exploits, Hacks & Tools - 5 Replies
Hallo....
Ich wollte mal fragen, ob jemand nen paar wpe filter für Krieger kennt?
Wenn ja, bitte posten =)
|
[Suche] WPE Pro Filter
12/21/2008 - World of Warcraft - 0 Replies
Suche ein paar WPE Pro Filter die noch auf 2.4.3 Servern funktionieren, egal welche, hauptsache irgendwelche. Am besten wären Sachen wo man mehr Damage macht oder so, egal welche Klasse. Wäre sehr dankbar.
Search a few WPE Pro filters are still on 2.4.3 servers work, no matter what, any merits. Would be best things where you make more Damage or so, no matter what class. Would be very grateful.
|
All times are GMT +1. The time now is 05:10.
|
|