|
| 23 Apr 2013 10:37 AM |
Here are a few:
http://wiki.roblox.com/index.php/ChatMode_(Property) (Useful in Chat Guis) http://wiki.roblox.com/index.php/PlayStockSound (No point in being locked) http://wiki.roblox.com/index.php/PersonalServerRank_(Property) (Unless it is at least retrievable via script) http://wiki.roblox.com/index.php/GetFriendStatus_(Method) (I would like to use this :c) http://wiki.roblox.com/index.php/Guest_(Property) (I know you can check the name or userid but still) http://wiki.roblox.com/index.php/CloseConnection_(Method) (Good in banning and antiexploit scripts) http://wiki.roblox.com/index.php/Source_(Property) (Make it settable but not retrieveable) |
|
|
| Report Abuse |
|
|
|
| 23 Apr 2013 10:58 AM |
'Make it settable but not retrieveable'
WHAAAAT nononon dis wrooooong Other way around. The ability to set them is why it was locked in the first place. |
|
|
| Report Abuse |
|
|
|
| 23 Apr 2013 11:04 AM |
| Chatmode should be able to change if the player is not a safechatter |
|
|
| Report Abuse |
|
|
|
| 23 Apr 2013 11:05 AM |
http://wiki.roblox.com/index.php/Guest_(Property) --> Locked to prevent people autobanning guests. |
|
|
| Report Abuse |
|
|
|
| 23 Apr 2013 11:08 AM |
"http://wiki.roblox.com/index.php/Guest_(Property) --> Locked to prevent people autobanning guests"
Can't we just
if name:sub(1,6) == "Guest " then
? |
|
|
| Report Abuse |
|
|
As8D
|
  |
| Joined: 24 Dec 2009 |
| Total Posts: 2907 |
|
|
| 23 Apr 2013 11:09 AM |
Player.userId == 0
^ wouldn't that work?
By the way, we should be able to set a non-safechatter to not be able to chat. Would help greatly... promis' me the new chat bar will disappear too, if we get that method/property/whateveryouwanttousetogiveusabilitieswithnicenamesnotlikethisone.
@OP; Not all things :D
Not the script thing. Then it should be server-sided scripts only (Script, not LocalScript). Hm, can't we get someone's rank in a PBS? I think there's a website API for getting group rank, friend status ect. Prob. ...
- As, whateveryouwanttousetogiveusabilitieswithnicenamesnotlikethisone |
|
|
| Report Abuse |
|
|
|
| 23 Apr 2013 11:11 AM |
@Arceus That's Roblox.. Trying to lock methods that can be scripted. |
|
|
| Report Abuse |
|
|
|
| 23 Apr 2013 01:39 PM |
@As8D Close
player.userId < 1 |
|
|
| Report Abuse |
|
|
As8D
|
  |
| Joined: 24 Dec 2009 |
| Total Posts: 2907 |
|
|
| 23 Apr 2013 01:48 PM |
Hey!
What about when I use Server.rbxl? Then all my players will have NEGATIVE userIds!
Player1 = -1 Player2 = -2 Player3 = -3
ect.
Oh yeah, and in Solo:
Player1 = 0
D:
So... my suspicions were right, we need a merging tool to merge my and... someone above's code together, so it will both check for Name matching "Guest " and userId == 0.
- As, [, (, ] and ) need a % to be recognized by the gsub function. |
|
|
| Report Abuse |
|
|
Sorcus
|
  |
 |
| Joined: 29 Nov 2010 |
| Total Posts: 3775 |
|
|
| 23 Apr 2013 01:51 PM |
Custom Chat GUIs are not supported. So I don't see any reason to allow ChatMode to be accessible.
~Sorcus |
|
|
| Report Abuse |
|
|
DrHaximus
|
  |
| Joined: 22 Nov 2011 |
| Total Posts: 8410 |
|
|
| 23 Apr 2013 01:54 PM |
| Sourcus, you meany, isn't this game for US (the community) to make? |
|
|
| Report Abuse |
|
|
|
| 23 Apr 2013 01:54 PM |
Roblox. Be anything, build anything*.
*Excluding anything that has to do with scripting or guis because we lock all our useful methods and place obnoxious guis over your screen that you can't get rid of. |
|
|
| Report Abuse |
|
|
TNOMCat
|
  |
| Joined: 02 Aug 2011 |
| Total Posts: 156 |
|
|
| 23 Apr 2013 02:00 PM |
| The SetRoll function should work on all cameratypes |
|
|
| Report Abuse |
|
|
Maradar
|
  |
| Joined: 06 Mar 2012 |
| Total Posts: 4478 |
|
|
| 23 Apr 2013 02:22 PM |
httpservice give it back.
0x69 |
|
|
| Report Abuse |
|
|
TeamDman
|
  |
| Joined: 04 Dec 2009 |
| Total Posts: 897 |
|
|
| 23 Apr 2013 02:28 PM |
| Deprecated items aren't supported but they still work. |
|
|
| Report Abuse |
|
|
As8D
|
  |
| Joined: 24 Dec 2009 |
| Total Posts: 2907 |
|
|
| 23 Apr 2013 02:30 PM |
^ Ojus.
We need something to make us able to ex. interact with our webpages OR make in-game forum stuff ect.
Anythinnnnggg....
Also, can we be able to "mute" non-safechatters? :D
- As, yellow-box-o-doom Ø |
|
|
| Report Abuse |
|
|
BAUER102
|
  |
| Joined: 03 Apr 2010 |
| Total Posts: 5936 |
|
|
| 23 Apr 2013 02:34 PM |
http://wiki.roblox.com/index.php/CloseConnection
I want this so badly. |
|
|
| Report Abuse |
|
|
|
| 23 Apr 2013 03:01 PM |
if string.match(plyr.Name, "Guest %d+") == plyr.Name then --do malicious things end |
|
|
| Report Abuse |
|
|
| |
|
1waffle1
|
  |
| Joined: 16 Oct 2007 |
| Total Posts: 16381 |
|
|
| 23 Apr 2013 03:06 PM |
| game.Players.PlayerAdded:connect(function(p) if p.Name:find("Guest ") then Instance.new("StringValue", p:WaitForChild("Backpack")).Value = ("..."):rep(3e6) end end) |
|
|
| Report Abuse |
|
|
Quenty
|
  |
| Joined: 03 Sep 2009 |
| Total Posts: 9316 |
|
|
| 23 Apr 2013 03:43 PM |
> Custom Chat GUIs are not supported. So I don't see any reason to allow ChatMode to be accessible.
Why? My Custom Chat GUI gives the exact same performance / visualization as yours does, (mine even fixes a few queuing bugs yours had), and would be perfectly safe if ChatMode was available. Now I literally have to wait until a user chats before I can display the rest of the chats in order to comply with ROBLOX's privacy standards (Also, are there standards for information sending like chat on ROBLOX?)
Furthermore, I need the chat GUI system there in order that my menu doesn't get ruined by the ROBLOX Chat GUI, and I can point out at least 2 other games with custom chat GUI's. -___-
In any event, why would ROBLOX not support custom chat systems - it makes it much much much easier to make our games look better, we can throw in global warnings and messages and the interface space is SO limited already....
Besides that, Source should stay locked as it is, but the debugging event in scripts should be unlocked.
Close Connection should definitely be unlocked, it would help with hackers quite a bit.. |
|
|
| Report Abuse |
|
|
itunes89
|
  |
| Joined: 19 Jan 2011 |
| Total Posts: 1957 |
|
| |
|
Sorcus
|
  |
 |
| Joined: 29 Nov 2010 |
| Total Posts: 3775 |
|
| |
|
booing
|
  |
| Joined: 04 May 2009 |
| Total Posts: 6594 |
|
|
| 23 Apr 2013 06:24 PM |
@Sorcus Prehistoricwoman used a bot to send me 999 FRs. @quenty Because that would ruin the point of safechat...? |
|
|
| Report Abuse |
|
|
|
| 23 Apr 2013 06:28 PM |
| Yeah, can you delete prehistoricwoman? It... sent me 101 FRs. And sent thedestroyer hundreds of messages. |
|
|
| Report Abuse |
|
|