I am trying to make a moveset but I can't get it to only work on One character (Wassim) but it tells me there are script errors:
HTML clipboard
-- name: [CS] Wassim Kernouf
-- description: Dayum! How did I get here!?!!
--[[
API Documentation for Character Select can be found below:
https://github.com/Squishy6094/character-select-coop/blob/main/API-doc.md
Use this if you're curious on how anything here works >v<
]]
local E_MODEL_WASSIM = smlua_model_util_get_id("wassim_geo")
local TEX_WASSIM_ICON = get_texture_info("wassim-icon")
local TEXT_MOD_NAME = "[CS] Wassim Kernouf"
local VOICETABLE_BLANK = {
[CHAR_SOUND_ATTACKED] = 'ouch.ogg',
[CHAR_SOUND_DOH] = 'doh.ogg',
[CHAR_SOUND_DROWNING] = 'dead.ogg',
[CHAR_SOUND_DYING] = 'dead.ogg',
[CHAR_SOUND_GROUND_POUND_WAH] = 'groundpondwah.ogg',
[CHAR_SOUND_HAHA] = 'haha.ogg',
[CHAR_SOUND_HAHA_2] = 'haha.ogg',
[CHAR_SOUND_HERE_WE_GO] = 'ohyeah.ogg',
[CHAR_SOUND_HOOHOO] = 'hoohoo.ogg',
[CHAR_SOUND_MAMA_MIA] = 'mamamia.ogg',
[CHAR_SOUND_OKEY_DOKEY] = 'okey.ogg',
[CHAR_SOUND_LETS_A_GO] = "okey.ogg",
[CHAR_SOUND_ON_FIRE] = 'hot.ogg',
[CHAR_SOUND_OOOF] = 'oof2.ogg',
[CHAR_SOUND_OOOF2] = 'oof2.ogg',
[CHAR_SOUND_PUNCH_HOO] = 'punchoo.ogg',
[CHAR_SOUND_PUNCH_WAH] = 'punchwah.ogg',
[CHAR_SOUND_PUNCH_YAH] = 'punchya.ogg',
[CHAR_SOUND_SO_LONGA_BOWSER] = 'salambowser.ogg',
[CHAR_SOUND_TWIRL_BOUNCE] = 'groundpondwah.ogg',
[CHAR_SOUND_WAAAOOOW] = 'fall.ogg',
[CHAR_SOUND_WAH2] = 'wah.ogg',
[CHAR_SOUND_WHOA] = 'woah.ogg',
[CHAR_SOUND_YAHOO] = 'yahoo.ogg',
[CHAR_SOUND_YAHOO_WAHA_YIPPEE] = 'yahoo.ogg',
[CHAR_SOUND_YAH_WAH_HOO] = 'yah.ogg',
}
local PALETTE_WASSIM = {
[PANTS] = "000000",
[SHIRT] = "003200",
[GLOVES] = "003200",
[SHOES] = "723522",
[HAIR] = "fa4d00",
[SKIN] = "feb479",
[CAP] = "fa4d00",
}
_G.charSelect.character_add_palette_preset(E_MODEL_WASSIM, PALETTE_WASSIM)
if _G.charSelectExists then
CT_CHAR = _G.charSelect.character_add("Wassim", {"Dayum!", "It's Kerfoun", "It's Kernouf", "It's Carrefour", "The orange M&M is here"}, "Axolo6", {r = 255, g = 165, b = 0}, E_MODEL_WASSIM, CT_MARIO, TEX_WASSIM_ICON)
-- the following must be hooked for each character added
_G.charSelect.character_add_voice(E_MODEL_WASSIM, VOICETABLE_BLANK)
hook_event(HOOK_CHARACTER_SOUND, function (m, sound)
if _G.charSelect.character_get_voice(m) == VOICETABLE_BLANK then return _G.charSelect.voice.sound(m, sound) end
end)
hook_event(HOOK_MARIO_UPDATE, function (m)
if _G.charSelect.character_get_voice(m) == VOICETABLE_BLANK then return _G.charSelect.voice.snore(m) end
end)
else
djui_popup_create("\\#ffffdc\\\n"..TEXT_MOD_NAME.."\nRequires the Character Select Mod\nto use as a Library!\n\nPlease turn on the Character Select Mod\nand Restart the Room!", 6)
end
local function WASSIM_MOVESET
-- if we are walking and hit the x button we run
if m.controller.buttonPressed & Y_BUTTON ~= 0 then
-- set mario's vertical velocity to go down faster
m.forwardVel = 81
-- spawn mist particles
spawn_mist_particles_variable(0.1, 0, 11)
set_mario_action(m, ACT_WALKING, 0)
end
-- if we are jumping and hit the y button we twirl
if m.action == ACT_JUMP and m.controller.buttonPressed & Y_BUTTON ~= 0 then
-- set mario's vertical velocity to go down faster
m.forwardVel = 81
-- spawn mist particles
spawn_mist_particles_variable(0.1, 0, 11)
set_mario_action(m, ACT_WALKING, 0)
end
end
-- hooks
hook_event(E_MODEL_WASSIM, WASSIM_MOVESET)
HTML clipboard
-- name: [CS] Wassim Kernouf
-- description: Dayum! How did I get here!?!!
--[[
API Documentation for Character Select can be found below:
https://github.com/Squishy6094/character-select-coop/blob/main/API-doc.md
Use this if you're curious on how anything here works >v<
]]
local E_MODEL_WASSIM = smlua_model_util_get_id("wassim_geo")
local TEX_WASSIM_ICON = get_texture_info("wassim-icon")
local TEXT_MOD_NAME = "[CS] Wassim Kernouf"
local VOICETABLE_BLANK = {
[CHAR_SOUND_ATTACKED] = 'ouch.ogg',
[CHAR_SOUND_DOH] = 'doh.ogg',
[CHAR_SOUND_DROWNING] = 'dead.ogg',
[CHAR_SOUND_DYING] = 'dead.ogg',
[CHAR_SOUND_GROUND_POUND_WAH] = 'groundpondwah.ogg',
[CHAR_SOUND_HAHA] = 'haha.ogg',
[CHAR_SOUND_HAHA_2] = 'haha.ogg',
[CHAR_SOUND_HERE_WE_GO] = 'ohyeah.ogg',
[CHAR_SOUND_HOOHOO] = 'hoohoo.ogg',
[CHAR_SOUND_MAMA_MIA] = 'mamamia.ogg',
[CHAR_SOUND_OKEY_DOKEY] = 'okey.ogg',
[CHAR_SOUND_LETS_A_GO] = "okey.ogg",
[CHAR_SOUND_ON_FIRE] = 'hot.ogg',
[CHAR_SOUND_OOOF] = 'oof2.ogg',
[CHAR_SOUND_OOOF2] = 'oof2.ogg',
[CHAR_SOUND_PUNCH_HOO] = 'punchoo.ogg',
[CHAR_SOUND_PUNCH_WAH] = 'punchwah.ogg',
[CHAR_SOUND_PUNCH_YAH] = 'punchya.ogg',
[CHAR_SOUND_SO_LONGA_BOWSER] = 'salambowser.ogg',
[CHAR_SOUND_TWIRL_BOUNCE] = 'groundpondwah.ogg',
[CHAR_SOUND_WAAAOOOW] = 'fall.ogg',
[CHAR_SOUND_WAH2] = 'wah.ogg',
[CHAR_SOUND_WHOA] = 'woah.ogg',
[CHAR_SOUND_YAHOO] = 'yahoo.ogg',
[CHAR_SOUND_YAHOO_WAHA_YIPPEE] = 'yahoo.ogg',
[CHAR_SOUND_YAH_WAH_HOO] = 'yah.ogg',
}
local PALETTE_WASSIM = {
[PANTS] = "000000",
[SHIRT] = "003200",
[GLOVES] = "003200",
[SHOES] = "723522",
[HAIR] = "fa4d00",
[SKIN] = "feb479",
[CAP] = "fa4d00",
}
_G.charSelect.character_add_palette_preset(E_MODEL_WASSIM, PALETTE_WASSIM)
if _G.charSelectExists then
CT_CHAR = _G.charSelect.character_add("Wassim", {"Dayum!", "It's Kerfoun", "It's Kernouf", "It's Carrefour", "The orange M&M is here"}, "Axolo6", {r = 255, g = 165, b = 0}, E_MODEL_WASSIM, CT_MARIO, TEX_WASSIM_ICON)
-- the following must be hooked for each character added
_G.charSelect.character_add_voice(E_MODEL_WASSIM, VOICETABLE_BLANK)
hook_event(HOOK_CHARACTER_SOUND, function (m, sound)
if _G.charSelect.character_get_voice(m) == VOICETABLE_BLANK then return _G.charSelect.voice.sound(m, sound) end
end)
hook_event(HOOK_MARIO_UPDATE, function (m)
if _G.charSelect.character_get_voice(m) == VOICETABLE_BLANK then return _G.charSelect.voice.snore(m) end
end)
else
djui_popup_create("\\#ffffdc\\\n"..TEXT_MOD_NAME.."\nRequires the Character Select Mod\nto use as a Library!\n\nPlease turn on the Character Select Mod\nand Restart the Room!", 6)
end
local function WASSIM_MOVESET
-- if we are walking and hit the x button we run
if m.controller.buttonPressed & Y_BUTTON ~= 0 then
-- set mario's vertical velocity to go down faster
m.forwardVel = 81
-- spawn mist particles
spawn_mist_particles_variable(0.1, 0, 11)
set_mario_action(m, ACT_WALKING, 0)
end
-- if we are jumping and hit the y button we twirl
if m.action == ACT_JUMP and m.controller.buttonPressed & Y_BUTTON ~= 0 then
-- set mario's vertical velocity to go down faster
m.forwardVel = 81
-- spawn mist particles
spawn_mist_particles_variable(0.1, 0, 11)
set_mario_action(m, ACT_WALKING, 0)
end
end
-- hooks
hook_event(E_MODEL_WASSIM, WASSIM_MOVESET)