b073bbfb-0e99-45d3-9786-bb395a6bc6b01.02015
if (HasString(player,"tail_type_string_attribute") and not player.tail_type_string_attribute = "cat") {
old_tail_type_variable = player.tail_type_string_attribute
player.tail_type_string_attribute = "cat"
msg ("Your " + old_tail_type_variable + " tail has changed into a cat tail.")
} else if (HasString(player,"tail_type_string_attribute") and player.tail_type_string_attribute = "cat") {
msg ("You already have a cat tail.")
} else {
set (player,"tail_type_string_attribute","cat")
msg ("You grow a cat tail.")
}
if (HasString(player,"skin_type_string_attribute") and not player.skin_type_string_attribute = "fur") {
old_skin_type_variable = player.skin_type_string_attribute
player.skin_type_string_attribute = "fur"
msg ("Your " + old_skin_type_variable + " has changed into fur.")
} else if (HasString(player,"skin_type_string_attribute") and player.skin_type_string_attribute = "fur") {
msg ("You already have fur.")
} else {
set (player,"skin_type_string_attribute","fur")
msg ("You now have fur.")
}
if (HasString(player,"tail_type_string_attribute")) {
player.tail_type_string_attribute = null
msg ("You no longer have a tail.")
} else {
msg ("You already don't have a tail.")
}
if (HasString(player,"skin_type_string_attribute") and not player.skin_type_string_attribute = "skin") {
old_skin_type_variable = player.skin_type_string_attribute
player.skin_type_string_attribute = "skin"
msg ("Your " + old_skin_type_variable + " has changed into skin.")
} else if (HasString(player,"skin_type_string_attribute") and player.skin_type_string_attribute = "skin") {
msg ("You already have skin.")
} else {
set (player,"skin_type_string_attribute","skin")
msg ("You now have skin.")
}
neko potionroom
invoke (ScriptDictionaryItem(global_data_object.neko_scriptdictionary_attribute,ToString(GetRandomInt(1,DictionaryCount(global_data_object.neko_scriptdictionary_attribute)))))
human potionroom
invoke (ScriptDictionaryItem(global_data_object.human_scriptdictionary_attribute,ToString(GetRandomInt(1,DictionaryCount(global_data_object.human_scriptdictionary_attribute)))))
consumeconsume