Sims 3 found: 1 match: 0
I know this is a common problem, i've searched for hours now and even after seeing other's people posts i still cannot fix this. Please im begging.
My driver is NVIDIA GeForce RTX 3050 Laptop GPU. Bellow is how the DeviceConfg looks and I copied parts of GraphicsCard.srg and GraphicsRules.srg where i added my driver; i was trying to add my graphics card, and it does find it but it doesn't match. As you can see, it says "*GTX 3???*")) this is because i already tried doing "*GTX 30??*")). I dont know if its because it identifies the fact that my driver is from a latptop, which as you can see it recognizes the whole "RTX 3050 Laptop GPU" and i swear i already even tried "*GTX 3050 Laptop GPU*")).
GraphicsCard.srg
end
vendor "NVIDIA" 0x10b4 0x12d2 0x10de
card 0x25a2 "GeForce RTX 3050 Laptop GPU"
card 0x0fd1 "GeForce GT 650M"
GraphicsRules.srg
if (match("${cardVendor}", "NVIDIA"))
if(match("${cardName}", "* 1?0M*") or match("${cardName}", "* 2?0M*") or match("${cardName}", "* G1?0M*") or match("${cardName}", "* G2?0M*"))
seti cardLevel $cardLevelMedium
seti isCardMatched true
elseif (match("${cardName}", "*8800*") or match("${cardName}", "*9500*") or match("${cardName}", "*9600 GSO*") or match("${cardName}", "*9600 GT*") or match("${cardName}", "*9800 *") or match("${cardName}", "*GTX 2??*") or match("${cardName}", "*2?00M*") or match("${cardName}", "*3?00M*") or match("${cardName}", "*Quadro*FX 5??0*") or match("${cardName}", "*GT 1?0*") or match("${cardName}", "*GTS 150*") or match("${cardName}", "*GTS 250*") or match("${cardName}", "*GT 2??*") or match("${cardName}", "*GTS 2??*") or match("${cardName}", "*GTX 2??*") or match("${cardName}", "*GeForce G2??*") or match("${cardName}", "*GT 3??*") or match("${cardName}", "*GTS 3??*") or match("${cardName}", "*GTX 3??*") or match("${cardName}", "*GeForce 3??*") or match("${cardName}", "*GT 4??*") or match("${cardName}", "*GTS 4??*") or match("${cardName}", "*GTX 4??*") or match("${cardName}", "*GT 5??*") or match("${cardName}", "*GTS 5??*") or match("${cardName}", "*GTX 5??*") or match("${cardName}", "*GT 6??*") or match("${cardName}", "*GTX 3???*"))
seti cardLevel $cardLevelUber
If i need to share anything else, please do tell me. I've watched videos and read posts trying to figure out whats wrong but i dont know, only thing i know is that it has to be something related to GraphicsRules.srg (or so i've understood)
@Jackissita The 3050 is an RTX card, so you'd need to write RTX 3050 or something to that effect. Or you could just use 3050 without anything else.
The ? symbols are to say that anything can go there, but there has to be exactly one character there. For example, 30?0 would match with 3050 and 3080 but not 300.