Discuss Scratch

GourSE
Scratcher
1 post

How can I make a cloud chat?

I want to make a cloud chat in my scratch 2.0 game~~~~
drcold
Scratcher
100+ posts

How can I make a cloud chat?

This should explain the rules.
I took this from the wiki.

Status: Restricted
Chatrooms, along with private messaging, have been requested for a long time, but the answer has always been no because people can say anything without any moderation. The only exception is safe chats, which have a predefined lists of words, called a whitelist, that users can say, but anything not on the list is censored out of the chat. Safe chats are hard to make because of the variety of words that must be placed in the word list, therefore working safe chat rooms are very rare. And, because they are based on cloud data, New Scratchers cannot use them.

As you might know some members have created their own websites with forums and even chatrooms. You are free to do that as it is outside the realm of what Scratch is about. You might also have noticed that a few users were arguing about the list of chatrooms. So if that happens just with a list of chatrooms imagine what happens with the chatrooms themselves
– andresmh
jokebookservice1
Scratcher
1000+ posts

How can I make a cloud chat?

https://scratch.mit.edu/help/faq/#clouddata
Unfortunately not allowed by the rules: No Chatrooms.
However, if you want to say let players post their high scores and their usernames you could encode each letter to a number and use a special number to terminate their message. All in one cloud varriable. But don't make a chatroom.

Last edited by jokebookservice1 (Feb. 20, 2016 13:33:04)

drcold
Scratcher
100+ posts

How can I make a cloud chat?

jokebookservice1 wrote:

https://scratch.mit.edu/help/faq/#clouddata
Unfortunately not allowed by the rules: No Chatrooms.
However, if you want to say let players post their high scores and their usernames you could encode each letter to a number and use a special number to terminate their message. All in one cloud varriable. But don't make a chatroom.
But like in some of griffpatch's games there is safe chat.
Its allowed if its not a email or private messaging system, it has a word list of which you can use to speak and the main part is a game.
But in conclusion I guess you could make a cloud chat project in the Offline editor and publish it on a different website.
CornyPopCorn
Scratcher
24 posts

How can I make a cloud chat?

Actually you can make a Safe Chat by putting options like Hi or Hello.
Thinktdm
Scratcher
79 posts

How can I make a cloud chat?

well there use to be some cloud list until they removed them so i had a idea
when green flag clicked
forever

add (*Cloud* Talk) to [ v]
define Detail
Detail {Username} if username has error
RESET
u need some hacking to make a public one

Last edited by Thinktdm (Feb. 29, 2016 06:16:27)

Thinktdm
Scratcher
79 posts

How can I make a cloud chat?

drcold wrote:

This should explain the rules.
I took this from the wiki.

Status: Restricted
Chatrooms, along with private messaging, have been requested for a long time, but the answer has always been no because people can say anything without any moderation. The only exception is safe chats, which have a predefined lists of words, called a whitelist, that users can say, but anything not on the list is censored out of the chat. Safe chats are hard to make because of the variety of words that must be placed in the word list, therefore working safe chat rooms are very rare. And, because they are based on cloud data, New Scratchers cannot use them.

As you might know some members have created their own websites with forums and even chatrooms. You are free to do that as it is outside the realm of what Scratch is about. You might also have noticed that a few users were arguing about the list of chatrooms. So if that happens just with a list of chatrooms imagine what happens with the chatrooms themselves
– andresmh
if scratch has removed cloud lists then how do we make one?
deck26
Scratcher
1000+ posts

How can I make a cloud chat?

Thinktdm wrote:

if scratch has removed cloud lists then how do we make one?
If a cloud variable consists of several values joined together you can split them up into a list.

eg 0522190421 can be taken 2 digits at a time to give a list consisting of 5, 22, 19, 4 and 21.
LostLittleChick738
Scratcher
500+ posts

How can I make a cloud chat?

But didn't Scratch allow users to make cloud and whitelist chat?
I don't know what safe chat is.
LostLittleChick738
Scratcher
500+ posts

How can I make a cloud chat?

Thinktdm wrote:

well there use to be some cloud list until they removed them so i had a idea
when green flag clicked
forever

add (*Cloud* Talk) to [ v]
define Detail
Detail {Username} if username has error
RESET
u need some hacking to make a public one
More like
when gf clicked
forever
add (☁ Talk) to [list v] // This has to be a cloud variable

end
.
deck26
Scratcher
1000+ posts

How can I make a cloud chat?

Please don't necropost. General chat projects are no longer allowed except with a limited set of phrases already loaded within the project so that's all people can say.
starpro89
Scratcher
100+ posts

How can I make a cloud chat?

hello! can I help?
Endless-Ocean
Scratcher
100+ posts

How can I make a cloud chat?

Even though this discussion is 4 years old is it an option to have a cloud chat BUT block bad words and only people you know and trust can chat with you? I really want a chat like this in one of my projects but i'm not sure if it is allowed.

Last edited by Endless-Ocean (Sept. 11, 2020 18:22:36)

frogadier63
Scratcher
100+ posts

How can I make a cloud chat?

Endless-Ocean wrote:

Even though this discussion is 4 years old is it an option to have a cloud chat BUT block bad words and only people you know and trust can chat with you? I really want a chat like this in one of my projects but i'm not sure if it is allowed.
The rules say that you must have a list of words that you CAN say, not a list of words that you CAN'T say
Endless-Ocean
Scratcher
100+ posts

How can I make a cloud chat?

… I think I understand what they mean by that it's just it'll take a really long time to put all of those words… Maybe I can find a list of words to copy and paste. Well I guess that'll be my mission. Thanks for telling me.

Last edited by Endless-Ocean (Sept. 11, 2020 22:23:55)

eletrical123
Scratcher
2 posts

How can I make a cloud chat?

You are not aloud to just make cloud chat rooms and have people saying what ever they want to. Like frogadier63 said “The rules say that you must have a list of words that you CAN say” If you really want to make a chat room, just start coding on batch files, they have no limits…



My browser / operating system: Windows NT 10.0, Chrome 85.0.4183.121, No Flash version detected


In case you do start using batch files, use this code to start with:


@echo off
mode con: cols=60 lines=42
color 0a

title Chat Messenger

echo Hi, welcome to the chat program!

echo.

set /p username=Enter Your Name:

echo %username% has joined! >>DoNotDeleteMe.dat
cls
echo.
set /p message=Text:
goto bob

:bob
start Reciever
goto send
:message

mode con: cols=54 lines=4
cls
echo.
set /p message=Text:
if %message%== cls chat goto report

goto :send

:send
echo %username%: %message% >> DoNotDeleteMe2.dat
goto :message



:report
del DoNotDeleteMe2


serverscriptoutpost
Scratcher
3 posts

How can I make a cloud chat?

cloud chat is not possible even i tried in my project, still doesnt work

its impossible
OCK_Scratch
Scratcher
14 posts

How can I make a cloud chat?

A message block is all you need! Here’s how to make your block:
  • Click “Make a block”
  • Name you block “message”
  • Check the “Run without screen refresh” box
  • Add an “ask and wait” on the “define message” block
  • Replace “What’s your name?” with “Message Scratchers…”
  • Make a list called “☁️ Messages”
  • Add an “add to list” block on the “ask and wait” block
  • Replace “thing” with the “answer” block
  • Add a “when green flag clicked” block to the workspace
  • Add your “message” block to the “when green flag clicked” block
And that’s how it’s done ✔️ ☑️ ✅
sharkode
Scratcher
1000+ posts

How can I make a cloud chat?

You don't, it's against the rules
windows-11-pro
Scratcher
100+ posts

How can I make a cloud chat?

GourSE wrote:

I want to make a cloud chat in my scratch 2.0 game~~~~
make a cloud chat with bad words checking, that's easy and without whitelist
without whitelist :: hat
*dies* :: gray

Last edited by windows-11-pro (March 4, 2022 06:34:31)

Powered by DjangoBB