pickup file error unexpected symbol near ')'

mcsego

Guest
i checked all files and lines but i cant find the issue where it is ?

here the Log and pickup files

Item type is want - Rule: [type]==ring&&[quality]==rare#[fcr]==10&&[tohit]>=100&&[lifeleech]+[manaleech]>=12
Item is unid need identify
Pickit EXCEPTION: lua: error: [string "checking = get_item_stat(item, "2,0")>=15 and..."]:1: unexpected symbol near ')'
Item is want keep | Rule: [name]==superhealingpotion
 

Attachments

  • d_YZzjuZKmhJCj.txt
    36.2 KB · Views: 2
  • MexPickit-Uniques.nip
    22.8 KB · Views: 2
  • MexPickit-Sets.nip
    12.6 KB · Views: 1
  • MexPickit-Rares.nip
    55.4 KB · Views: 4
  • MexPickit-Magic.nip
    24.3 KB · Views: 3
  • MexPickit-Crafted.nip
    29 KB · Views: 3
  • MexPickit-Charms.nip
    21.1 KB · Views: 2
  • MexPickit-Bases.nip
    13.6 KB · Views: 2
  • MexPickit.nip
    3.7 KB · Views: 3
Solution
line 304 in rares
replace with the should be line below:
I will also be adding an updated pickit with these corrections.

Was:
Code:
[Type] == Ring && [Quality] == rare # [Dexterity] >= 15 && ([MaxHp] >= 30 || [MaxMana] >= 80) && [ColdResist]+[LightResist]+[FireResist]+[PoisonResist] >= 40)

Should be:
Code:
[Type] == Ring && [Quality] == rare # [Dexterity] >= 15 && ([MaxHp] >= 30 || [MaxMana] >= 80) && [ColdResist]+[LightResist]+[FireResist]+[PoisonResist] >= 40
I'm searching every line for this error. It sux it does not give me the base item name it's trying to Id.

Is there a comma in between 2,0?
Faybe it's a 20 ias craft or something.
I'm searching
 
The benefit of troubleshooting this error is that you can omit a pickit from your lua file.
Try omiting the rare pickit and see if the EXCEPTION goes away.
I will omit the uniques

i checked my pickit debug and i have this, maybe its related to an item name possibly?
Pickit EXCEPTION: lua: error: [string "checking = get_item_stat(item, "194,0")==4get..."]:1: unexpected symbol near '4g'
 
Iver tried to search for yours using this as the keyword '>=15 &&'
I checked for any anomalies near a ')'
It has to either be in Crafted, magic, or rares though.
ill continue if i get another idea.

my issue was i was missing '&&' on two lines in my magic pickit for a new version.
Was adding in JSTOD (Pally Jmod)
 
line 304 in rares
replace with the should be line below:
I will also be adding an updated pickit with these corrections.

Was:
Code:
[Type] == Ring && [Quality] == rare # [Dexterity] >= 15 && ([MaxHp] >= 30 || [MaxMana] >= 80) && [ColdResist]+[LightResist]+[FireResist]+[PoisonResist] >= 40)

Should be:
Code:
[Type] == Ring && [Quality] == rare # [Dexterity] >= 15 && ([MaxHp] >= 30 || [MaxMana] >= 80) && [ColdResist]+[LightResist]+[FireResist]+[PoisonResist] >= 40
 
Solution

V2.0 here.

Charms:
// -Added Gheeds GC (v1.1)
// -Corrected stats on small charms with Res (v1.1)

Magic:
// -Added Skills for Volcano on Druid Pelt (v1.1)
// -Moved Jewels to their own Pickit (v1.1)
// -Added Paladin JMOD (v1.2)

Rares:
// -Moved Jewels to their own Pickit (v1.1)
// -Added Rare diadem for rolling with Pskulls (V1.2)
// -Corrected EXCEPTION errors (V1.2)
 

Attachments

  • MexPickit_V2.0.zip
    23.8 KB · Views: 3

mcsego

Guest
line 304 in rares
replace with the should be line below:
I will also be adding an updated pickit with these corrections.

Was:
Code:
[Type] == Ring && [Quality] == rare # [Dexterity] >= 15 && ([MaxHp] >= 30 || [MaxMana] >= 80) && [ColdResist]+[LightResist]+[FireResist]+[PoisonResist] >= 40)

Should be:
Code:
[Type] == Ring && [Quality] == rare # [Dexterity] >= 15 && ([MaxHp] >= 30 || [MaxMana] >= 80) && [ColdResist]+[LightResist]+[FireResist]+[PoisonResist] >= 40
thanks ! i didint see that

in your new version

// -Added Rare diadem for rolling with Pskulls (V1.2) ?
[Name] == Diadem && [Quality] == rare
all rare diadem ? without some stats?
 
thanks ! i didint see that

in your new version

// -Added Rare diadem for rolling with Pskulls (V1.2) ?
[Name] == Diadem && [Quality] == rare
all rare diadem ? without some stats?
All rare. Point is to reroll them in the cube with 6x pskulls.
Diadems ilvl never decreases and it isn't based on character level either. So u have the possibility always to roll gg diadems.
Maybe put max qty as 2 or 3
 
Top