How can i add custom logo cs to characters that dont have one, without modding?

Hmm lemme try it
Don't double post! Use that edit button! Post automatically merged:

I did it and the tex file appeared but its still not showing the png in the cs menu
putting it into the textures file doesnt immediately make it the cs graffiti. you need to add that in yourself via coding. theres no way to do this without coding.
 
ok i'm going to use triple baka pack as an example for this:

first you wanna make sure your texture is loaded into the game with this:
local TEX_MIKU_GRAFFITI = get_texture_info("miku_logo")

that last part thats in the "" has to be the name of the .tex file. the first one (TEX_MIKU_GRAFFITI) can be anything you want, just make sure it has no spaces, and is all caps.

next, you wanna search for where it says "CT_[your char name] =" and go to the end of that line (after the final ")" bracket) and make a new line, where you then paste this
if charSelect.version_get_full().major >= 16 then
_G.charSelect.character_add_graffiti(CT_MIKU, TEX_MIKU_GRAFFITI)
end

make sure that the CT is your character name, and the TEX_ is the same one from above.
if something doesnt work tell me, and if possible send me screenshots.
 
Can you post the combination of the code fully and put it like this (the coding box) with the miku example you gave? I dont really know what game you mean and i downloaded vscodroid since it was the only thing i could find similiar to what app u suggested.
example
Don't double post! Use that edit button! Post automatically merged:

I tried searching the file but nothing appeared
 
if you could send the name of the TEX file, as well as the contents of the lua file, i can give you a full code chunk you can jsut copy paste over the main.lua
 
Ive so far just named it SMW_Mario_Logo.tex as an example for the SMW Mario CS
Don't double post! Use that edit button! Post automatically merged:

And i only put inside the first steps
Don't double post! Use that edit button! Post automatically merged:

I dont exactly know what VScode app you mean and am not sure the one i downloaded is the right one
 
Last edited:

Users who are viewing this thread