Path of Exile 2

Path of Exile 2

ctgames9164 Dec 24, 2024 @ 7:08pm
need help filtering uncut gem...
hello I need help writing lines of code to filter out uncut gem that are below level 19.

Original code:

Show
BaseType "Uncut "
SetTextColor 20 240 240
SetBorderColor 20 240 240
PlayAlertSound 2 300
PlayEffect Cyan
MinimapIcon 1 Cyan Triangle


New Code:

# Hide Uncut Gems Below Level 18
Hide
BaseType "Uncut "
GemLevel < 15

# Highlight Uncut Gems Level 18 and Above
Show
BaseType "Uncut "
GemLevel >= 16
SetTextColor 20 240 240
SetBorderColor 20 240 240
PlayAlertSound 2 300
PlayEffect Cyan
MinimapIcon 1 Cyan Triangle


It's simply not working... as it's filtering out all level of gem...
< >
Showing 1-8 of 8 comments
THE OCCULT GOD Dec 24, 2024 @ 7:32pm 
why cant you just play
ctgames9164 Dec 24, 2024 @ 8:14pm 
Originally posted by THE OCCULT GOD:
why cant you just play
why cant u just not respond if your comment add no value?
TennyBlue Dec 24, 2024 @ 8:31pm 
I don't understand, how are you programming this?
Is there like an in game script/console you can access?

I don't know if this is even allowed.

I doubt someone here knows or will help you with this, try ChatGPT.
ctgames9164 Dec 24, 2024 @ 9:04pm 
Originally posted by LizardMan:
I don't understand, how are you programming this?
Is there like an in game script/console you can access?

I don't know if this is even allowed.

I doubt someone here knows or will help you with this, try ChatGPT.

it's item loot filter... everyone is using it...
FeetFighter Dec 26, 2024 @ 5:58am 
# Highlight Uncut Gems Level 18 and Above
Show
BaseType "Uncut "
GemLevel >= 16
SetTextColor 20 240 240
SetBorderColor 20 240 240
PlayAlertSound 2 300
PlayEffect Cyan
MinimapIcon 1 Cyan Triangle

==>

# Highlight Uncut Gems Level 18 and Above
Show
BaseType "Uncut "
ItemLevel >= 16
SetTextColor 20 240 240
SetBorderColor 20 240 240
PlayAlertSound 2 300
PlayEffect Cyan
MinimapIcon 1 Cyan Triangle
Originally posted by ctgames9164:
hello I need help writing lines of code to filter out uncut gem that are below level 19.

Original code:

Show
BaseType "Uncut "
SetTextColor 20 240 240
SetBorderColor 20 240 240
PlayAlertSound 2 300
PlayEffect Cyan
MinimapIcon 1 Cyan Triangle


New Code:

# Hide Uncut Gems Below Level 18
Hide
BaseType "Uncut "
GemLevel < 15

# Highlight Uncut Gems Level 18 and Above
Show
BaseType "Uncut "
GemLevel >= 16
SetTextColor 20 240 240
SetBorderColor 20 240 240
PlayAlertSound 2 300
PlayEffect Cyan
MinimapIcon 1 Cyan Triangle


It's simply not working... as it's filtering out all level of gem...

Pretty sure its ItemLevel not GemLevel
ctgames9164 Dec 26, 2024 @ 4:45pm 
Originally posted by Fluffy Bunny of Despair:
Originally posted by ctgames9164:
hello I need help writing lines of code to filter out uncut gem that are below level 19.

Original code:

Show
BaseType "Uncut "
SetTextColor 20 240 240
SetBorderColor 20 240 240
PlayAlertSound 2 300
PlayEffect Cyan
MinimapIcon 1 Cyan Triangle


New Code:

# Hide Uncut Gems Below Level 18
Hide
BaseType "Uncut "
GemLevel < 15

# Highlight Uncut Gems Level 18 and Above
Show
BaseType "Uncut "
GemLevel >= 16
SetTextColor 20 240 240
SetBorderColor 20 240 240
PlayAlertSound 2 300
PlayEffect Cyan
MinimapIcon 1 Cyan Triangle


It's simply not working... as it's filtering out all level of gem...

Pretty sure its ItemLevel not GemLevel

thank you! I got it
Originally posted by LizardMan:
I don't understand, how are you programming this?
Is there like an in game script/console you can access?

I don't know if this is even allowed.

I doubt someone here knows or will help you with this, try ChatGPT.

And yes. Lootfilters are built into PoE 2 just like in PoE 1. :3 If the task is to daunting for yourself, you can always wait till neversink filters come online. I think a basic version is already available on Github if you are curious about the topic.
< >
Showing 1-8 of 8 comments
Per page: 1530 50

Date Posted: Dec 24, 2024 @ 7:08pm
Posts: 8