• Do not use Works in Progress as a way of avoiding the releases system! Works in Progress can be used for sharing early betas and for getting suggestions for improvement. Releases of finished content are not allowed in this forum! If you would like to submit a finished addon, click here for instructions on how to do so.

Character WAD Fail

Status
Not open for further replies.
I think the best way is to download a wad that you know works, or even looking at player.dta and compare your wad with that one. Just make sure you have SLADE configured correctly forcing auto-capitalization is off and the use percent encoding is on. (I think using the latest beta version is the best to use).
 
I'm making an alt version

---------- Post added at 06:18 AM ---------- Previous post was at 06:08 AM ----------

I managed to get it to work but it showed Sonic instead of Knuckles.
I don't know why.
srb20031_by_caleb10927-d9m9xbx.png
 
Oh, speaking of Character wads, i'm planning to create a Mod based on Sonic and Secret rings, however i'd like to know first if there's anyway to Replace the existing Sonic's abilities without having to create a New character + Erase rest of characters for a Closer feel to the "Alf Layla wa Layla" stories they spoke about .
 
Last edited:
You can use lua to change Sonic's ability to another ability.

Code:
addHook("ThinkFrame", do
    for player in players.iterate
        if player.mo and player.mo.skin == "sonic"
            player.charability = CA_NONE
        end
    end
end)

You can change Sonic's ability to anything if you refer to the wiki.
 
Status
Not open for further replies.

Who is viewing this thread (Total: 1, Members: 0, Guests: 1)

Back
Top