mirror of
https://github.com/4sval/FModel.git
synced 2026-09-25 18:48:50 -05:00
PUBG Black Budget support
Valorant mappings endpoint
This commit is contained in:
Submodule CUE4Parse updated: d2f6ce6e61...ab20414ab3
@@ -10,18 +10,18 @@ public class EndpointSettings : ViewModel
|
||||
{
|
||||
public static EndpointSettings[] Default(string gameName)
|
||||
{
|
||||
switch (gameName)
|
||||
return gameName switch
|
||||
{
|
||||
case "Fortnite":
|
||||
case "Fortnite [LIVE]":
|
||||
return new EndpointSettings[]
|
||||
{
|
||||
new("https://uedb.dev/svc/api/v1/fortnite/aes", "$.['mainKey','dynamicKeys']"),
|
||||
new("https://uedb.dev/svc/api/v1/fortnite/mappings", "$.mappings.ZStandard")
|
||||
};
|
||||
default:
|
||||
return new EndpointSettings[] { new(), new() };
|
||||
}
|
||||
"Fortnite" or "Fortnite [LIVE]" => [
|
||||
new("https://uedb.dev/svc/api/v1/fortnite/aes", "$.['mainKey','dynamicKeys']"),
|
||||
new("https://uedb.dev/svc/api/v1/fortnite/mappings", "$.mappings.ZStandard")
|
||||
],
|
||||
"VALORANT" or "VALORANT [LIVE]" => [
|
||||
new("https://uedb.dev/svc/api/v1/valorant/aes", "$.['mainKey','dynamicKeys']"),
|
||||
new("https://uedb.dev/svc/api/v1/valorant/mappings", "$.mappings.ZStandard")
|
||||
],
|
||||
_ => [new(), new()],
|
||||
};
|
||||
}
|
||||
|
||||
private string _url;
|
||||
@@ -106,4 +106,4 @@ public class EndpointSettings : ViewModel
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user