I don't know if it's already been suggested, but an IP address would be helpful for returning users who want their account on a game to log in automatically. It would look like this:
(IP)Except blue.
Last edited by curiouscrab (2013-01-10 22:45:01)
Offline
Absolutely not. This would allow for a Scratcher to track people, which is not what we want. The user id block if useful because it lets you keep data for a specific user, but it doesn't actually give you the user itself.
Offline
jvvg wrote:
Absolutely not. This would allow for a Scratcher to track people, which is not what we want. The user id block if useful because it lets you keep data for a specific user, but it doesn't actually give you the user itself.
Offline
this wouldn't work anyway. my ip address changes often (don't know exactly why) so it would not be a reliable means of tracking users. user id is fine the way it is.
Offline
KrIsMa wrote:
northmeister wrote:
you can do this with the "user id" block.
Yeah, just wait for Scratch 2.0 premier!
http://wiki.scratch.mit.edu/wiki/User_ID_(block)
*facepalm* Do you guys even know what an IP address is?
Edit: Oh. Never mind. But there are alternate uses for the block, you know, not that I support it.
Wes64 wrote:
this wouldn't work anyway. my ip address changes often (don't know exactly why) so it would not be a reliable means of tracking users. user id is fine the way it is.
Mine does too, but you are not everyone.
Last edited by lalala3 (2013-01-11 17:17:32)
Offline
lalala3 wrote:
Wes64 wrote:
this wouldn't work anyway. my ip address changes often (don't know exactly why) so it would not be a reliable means of tracking users. user id is fine the way it is.
Mine does too, but you are not everyone.
Dynamic IPs are actually quite common.
Offline
jvvg wrote:
lalala3 wrote:
Wes64 wrote:
this wouldn't work anyway. my ip address changes often (don't know exactly why) so it would not be a reliable means of tracking users. user id is fine the way it is.
Mine does too, but you are not everyone.
Dynamic IPs are actually quite common.
"Common" is not synonymous with "universal".
Offline
jvvg wrote:
Absolutely not. This would allow for a Scratcher to track people, which is not what we want. The user id block if useful because it lets you keep data for a specific user, but it doesn't actually give you the user itself.
Offline
Mokat wrote:
jvvg wrote:
Absolutely not. This would allow for a Scratcher to track people, which is not what we want. The user id block if useful because it lets you keep data for a specific user, but it doesn't actually give you the user itself.
We saw that already, thank you very much. And yes, that is one of the main reasons why I don't like the idea.
Last edited by lalala3 (2013-01-11 17:20:55)
Offline
lalala3 wrote:
Mokat wrote:
jvvg wrote:
Absolutely not. This would allow for a Scratcher to track people, which is not what we want. The user id block if useful because it lets you keep data for a specific user, but it doesn't actually give you the user itself.
We saw that already, thank you very much. And yes, that is one of the main reasons why I don't like the idea.
When they're quoting it, they're just saying that they agree with me and don't have anything else to say.
Offline
lalala3 wrote:
jvvg wrote:
lalala3 wrote:
Mine does too, but you are not everyone.Dynamic IPs are actually quite common.
"Common" is not synonymous with "universal".
but it means the IP address block wouldn't work for a lot of people, even though it may work for some.
Offline
kayybee wrote:
lalala3 wrote:
jvvg wrote:
Dynamic IPs are actually quite common.
"Common" is not synonymous with "universal".
but it means the IP address block wouldn't work for a lot of people, even though it may work for some.
But, as you said, some people are vulnerable. We want to make that number as close as possible to zero, by not allowing the block.
Last edited by lalala3 (2013-01-11 18:29:16)
Offline
lalala3 wrote:
KrIsMa wrote:
northmeister wrote:
you can do this with the "user id" block.
Yeah, just wait for Scratch 2.0 premier!
http://wiki.scratch.mit.edu/wiki/User_ID_(block)*facepalm* Do you guys even know what an IP address is?
Edit: Oh. Never mind. But there are alternate uses for the block, you know, not that I support it.
of course I know what an ip address is, and in the instance he was describing it would have been simple to use the user id block
Offline
lalala3 wrote:
Mokat wrote:
jvvg wrote:
Absolutely not. This would allow for a Scratcher to track people, which is not what we want. The user id block if useful because it lets you keep data for a specific user, but it doesn't actually give you the user itself.
We saw that already, thank you very much. And yes, that is one of the main reasons why I don't like the idea.
I was quoting to show agreement.
Offline
Mokat wrote:
lalala3 wrote:
Mokat wrote:
We saw that already, thank you very much. And yes, that is one of the main reasons why I don't like the idea.
I was quoting to show agreement.
Then just say that you agreed with them when they said X.
Offline
My sister and I both use the same IP (obviously. ). Would that mean we would have the same cloud data? Yes.
No support.
Offline
I don't get what is the problem in having an ip block, I don't know what it could be used for but I don't think people should think someone is tracking them. Police departments have precise ip trackers, but the ones you find on the internet only shows you the region (like city or country).
Offline
ExtremelyGamer wrote:
I don't get what is the problem in having an ip block, I don't know what it could be used for but I don't think people should think someone is tracking them. Police departments have precise ip trackers, but the ones you find on the internet only shows you the region (like city or country).
Still, it can be abused and even if it goes only to a city, it can tell you approximatly where you are. Further research, can expose you (like searching a name in that region).
I think ip addresses expose your precise dwelling.
Offline
Definitely not. It wouldn't work for saving games or cloud data, as around 90% of people use dynamic IP addresses, including myself and probably everyone posting in this thread. They change every few days to few months depending on the ISP. Static IP addresses are usually only used by datacenters, businesses, and people who host their servers at home. You can, indeed, get the city someone lives in with just their IPs, and one of Scratch's most important interests is a user's privacy.
In my opinion, there is no reason to use an IP block when there will be a User ID block. They are specific to the user and can be used with different computers and IP addresses.
Last edited by Rub0Gameton (2013-01-12 13:23:05)
Offline
Example script:
when gf clicked if <[ips v] contains (IP)> repeat until <(item (#) of [ips v])=(IP)> change [# v] by (1) end set [username v] to (item (#) of [usernames v]) set [password v] to (item (#) of [passwords v]) else add (IP) to [ips v] ask [What username would you like?] and wait set [username v] to (answer) add (answer) to [usernames v] ask [What would you like your password to be?] and wait set [password v] to (answer) add (answer) to [passwords v] end
Last edited by curiouscrab (2013-01-13 13:46:10)
Offline
curiouscrab wrote:
Example script:
when gf clicked if <[ips v] contains (IP)> repeat until <(item (#) of [ips v])=(IP)> change [# v] by (1) end set [username v] to (item (#) of [usernames v]) set [password v] to (item (#) of [passwords v]) else add (IP) to [ips v] ask [What username would you like?] and wait set [username v] to (answer) add (answer) to [usernames v] ask [What would you like your password to be?] and wait set [password v] to (answer) add (answer) to [passwords v] end
If you find somebody's IP, you could also do this, though:
when gf clicked if <(ip) = [1.2.3.4]> //or whatever their IP is say [something mean] stop all endYour script would also be essentially useless if somebody has a dynamic IP (which most people do). If you want data persistence, just use the user id block.
Offline
jvvg wrote:
curiouscrab wrote:
Example script:
when gf clicked if <[ips v] contains (IP)> repeat until <(item (#) of [ips v])=(IP)> change [# v] by (1) end set [username v] to (item (#) of [usernames v]) set [password v] to (item (#) of [passwords v]) else add (IP) to [ips v] ask [What username would you like?] and wait set [username v] to (answer) add (answer) to [usernames v] ask [What would you like your password to be?] and wait set [password v] to (answer) add (answer) to [passwords v] endIf you find somebody's IP, you could also do this, though:
when gf clicked if <(ip) = [1.2.3.4]> //or whatever their IP is say [something mean] stop all endYour script would also be essentially useless if somebody has a dynamic IP (which most people do). If you want data persistence, just use the user id block.
Highly unlikely. It should be removed immdiately if that happens. Also, for dynamic IP's there could be an option added that would ask if they have a dynamic IP or not. If no, then it will add it to the list.
Offline
jvvg wrote:
curiouscrab wrote:
Example script:
when gf clicked if <[ips v] contains (IP)> repeat until <(item (#) of [ips v])=(IP)> change [# v] by (1) end set [username v] to (item (#) of [usernames v]) set [password v] to (item (#) of [passwords v]) else add (IP) to [ips v] ask [What username would you like?] and wait set [username v] to (answer) add (answer) to [usernames v] ask [What would you like your password to be?] and wait set [password v] to (answer) add (answer) to [passwords v] endIf you find somebody's IP, you could also do this, though:
when gf clicked if <(ip) = [1.2.3.4]> //or whatever their IP is say [something mean] stop all endYour script would also be essentially useless if somebody has a dynamic IP (which most people do). If you want data persistence, just use the user id block.
when gf clicked if <(user id)=[jvvg]> say [bad stuff] stop all endBasically the same thing, although come to think of it I can do:
when gf clicked if <[usernames v] contains (user id)> repeat until <(item (#) of [usernames v])=(user id)> change [# v] by (1) end set [username v] to (user id) set [password v] to (item (#) of [passwords v]) else set [username v] to (user id) add (user id) to [usernames v] ask [What would you like your password to be?] and wait set [password v] to (answer) add (answer) to [passwords v] end
Last edited by curiouscrab (2013-01-15 21:33:31)
Offline