mirror of
https://github.com/esx-framework/esx_core.git
synced 2026-09-04 08:13:21 +00:00
Begin rebranding (refactor+rewrite)
- Kashacters events renamed - Update MySQL.Async queries to modern standards and remove string concatenation - Rewrote `GetPlayerCharacters` to only use relevant information
This commit is contained in:
+2
-2
@@ -40,7 +40,7 @@ $(".character-box").click(function () {
|
||||
|
||||
|
||||
$("#play-char").click(function () {
|
||||
$.post("http://esx_kashacters/CharacterChosen", JSON.stringify({
|
||||
$.post("http://esx_multicharacter/CharacterChosen", JSON.stringify({
|
||||
charid: Number($('.active-char').attr("data-charid")),
|
||||
ischar: ($('.active-char').attr("data-ischar") == "true"),
|
||||
}));
|
||||
@@ -48,7 +48,7 @@ $("#play-char").click(function () {
|
||||
});
|
||||
|
||||
$("#deletechar").click(function () {
|
||||
$.post("http://esx_kashacters/DeleteCharacter", JSON.stringify({
|
||||
$.post("http://esx_multicharacter/DeleteCharacter", JSON.stringify({
|
||||
charid: Number($('.active-char').attr("data-charid")),
|
||||
}));
|
||||
Kashacter.CloseUI();
|
||||
|
||||
Reference in New Issue
Block a user