|
| 21 Mar 2014 08:12 PM |
http://wiki.roblox.com/index.php?title=MembershipType_(Property)
I need to find an alternate solution to "Enum.MembershipType.BuildersClub" considering that it's read-only, any suggestions? |
|
|
| Report Abuse |
|
|
| |
|
maxomega3
|
  |
| Joined: 11 Jun 2010 |
| Total Posts: 10668 |
|
|
| 21 Mar 2014 08:14 PM |
| It's all read-only. Why do you think you can get away with free BC status? |
|
|
| Report Abuse |
|
|
|
| 21 Mar 2014 08:15 PM |
| That's why I need an alternative, I've looked everywhere in the wiki, but, cannot find it. :/ |
|
|
| Report Abuse |
|
|
Absurdism
|
  |
| Joined: 18 Jul 2013 |
| Total Posts: 2568 |
|
|
| 21 Mar 2014 08:17 PM |
?.? You think there's a RW property for Builders Club? TOPLEL |
|
|
| Report Abuse |
|
|
|
| 21 Mar 2014 08:18 PM |
The MembershipType is an Enum : http://wiki.roblox.com/index.php?title=MembershipType_(Enum)
So, it has no properties. :/
|
|
|
| Report Abuse |
|
|
Absurdism
|
  |
| Joined: 18 Jul 2013 |
| Total Posts: 2568 |
|
|
| 21 Mar 2014 08:20 PM |
*facepalm* This made my day, OP. |
|
|
| Report Abuse |
|
|
|
| 21 Mar 2014 08:21 PM |
| Lol, it is a bit challenging, is it through number Enum's? |
|
|
| Report Abuse |
|
|
|
| 21 Mar 2014 08:25 PM |
| I checked out my number theory, it didn't work whatsoever. |
|
|
| Report Abuse |
|
|
|
| 21 Mar 2014 08:31 PM |
| I know this might be a bump, but, I really need an alternative, so than I can finish this script. |
|
|
| Report Abuse |
|
|
|
| 21 Mar 2014 08:32 PM |
-_- it's read only, so you can check
if Player.MembershipProperty = Enum.Membershipblahblahblah then
end |
|
|
| Report Abuse |
|
|
|
| 21 Mar 2014 08:37 PM |
| No, I've tried that, doesn't work. :/ |
|
|
| Report Abuse |
|
|
|
| 21 Mar 2014 08:40 PM |
What exactly are you trying to do? This thread doesn't make ANY sense. |
|
|
| Report Abuse |
|
|
|
| 21 Mar 2014 08:44 PM |
game.Players.PlayerAdded:connect(function(p) if p.MembershipType == Enum.MembershipType.BuildersClub then print("User has regular Builder's Club!") end end)
Doesn't work whatsoever. There has to be an alternative to this problem. |
|
|
| Report Abuse |
|
|
robocu3
|
  |
| Joined: 13 Mar 2009 |
| Total Posts: 6485 |
|
|
| 21 Mar 2014 08:46 PM |
...any error in output? are you doing it on a test server? -=Robo=- |
|
|
| Report Abuse |
|
|
|
| 21 Mar 2014 08:46 PM |
| That should work. You can't exactly see the output online, and you have OBC. I'm not sure if test players are considered NBC or your tier of BC, but I would assume NBC. |
|
|
| Report Abuse |
|
|
robocu3
|
  |
| Joined: 13 Mar 2009 |
| Total Posts: 6485 |
|
|
| 21 Mar 2014 08:47 PM |
http://wiki.roblox.com/index.php?title=MembershipType_(Enum) does that seem of any use -=Robo=- |
|
|
| Report Abuse |
|
|
zomg44
|
  |
| Joined: 30 Sep 2008 |
| Total Posts: 5678 |
|
|
| 21 Mar 2014 08:47 PM |
| http://www.youtube.com/watch?v=ztVMib1T4T4 |
|
|
| Report Abuse |
|
|
|
| 21 Mar 2014 08:48 PM |
| I'm using the Remote Error Monitoring System, and it doesn't work. :/ |
|
|
| Report Abuse |
|
|
|
| 21 Mar 2014 08:49 PM |
print(p.MembershipType)
Add that before your if statement. |
|
|
| Report Abuse |
|
|
|
| 21 Mar 2014 08:52 PM |
| Okay, let me try that quickly. |
|
|
| Report Abuse |
|
|
|
| 21 Mar 2014 08:56 PM |
| That works, but, the if p.MembershipType == Enum.MembershipType.BuildersClub then didn't work. :/ |
|
|
| Report Abuse |
|
|
|
| 21 Mar 2014 09:18 PM |
game.Players.PlayerAdded:connect(function(p) if p.MembershipType == Enum.MembershipType.BuildersClub then print("User has regular Builder's Club!") elseif p.MembershipType == Enum.MembershipType.TurboBuildersClub then print("User has turbo Builder's Club!") elseif p.MembershipType == Enum.MembershipType.OutrageousBuildersClub then print("User has outrageous Builder's Club!") end end) |
|
|
| Report Abuse |
|
|