|
| 23 Jul 2011 02:26 PM |
I created this a few minutes ago, I have it in my models, it basically just generates random RP Names :)
Some Examples from it:
Aawmton Oehpun Oedkex Noldmel Eimkex Mizhun Aowkien Aupcien Wosfex Dojyfield Dowten Iabcion Iapbton Voncer Silgien Oanzun Aifzer Aoclmel Xigvman Rommen
----------------------------------------------------------------------------
wait(1) function Pick(tab) return tab[math.random(1, #tab)] end
function C(caps) if (caps == false) then return Pick({"b","c","d","f","g","h","j","k","l","m","n","p","r","s","t","v","w","x","y","z"}) else return Pick({"B","C","D","F","G","H","J","K","L","M","N","P","R","S","T","V","W","X","Y","Z"}) end end
function V(caps) if (caps == false) then return Pick({"a","i","e","o","u"}) else return Pick({"A","I","E","O","U"}) end end
function Start() if math.random(1,2) == 1 then return C(true) else return V(true) end end
function End() return Pick({"ith", "ton", "on", "field", "man","er","ien","en","un","ion","ex","mel"}) end
print(Start() .. V(false) .. C(false) .. C(false) .. End()) |
|
|
| Report Abuse |
|
|
|
| 23 Jul 2011 02:27 PM |
To bad scripts like this are hated by the community, because everyone wants free modeled guns :(
_____________ Turtle power! |
|
|
| Report Abuse |
|
|
LocalChum
|
  |
| Joined: 04 Mar 2011 |
| Total Posts: 6906 |
|
| |
|
Tenal
|
  |
| Joined: 15 May 2011 |
| Total Posts: 18684 |
|
| |
|
|
| 23 Jul 2011 02:27 PM |
Wait a minute... *Creates a Lua executable to spam Roblox with accounts with random names*
Jk.
_____________ Turtle power! |
|
|
| Report Abuse |
|
|
bombpaw
|
  |
| Joined: 15 Mar 2009 |
| Total Posts: 3484 |
|
|
| 23 Jul 2011 02:28 PM |
| OYSI, GET THE GUN, THIS ONE'S GONNA BE DEEP FRIED! |
|
|
| Report Abuse |
|
|
| |
|
| |
|
LocalChum
|
  |
| Joined: 04 Mar 2011 |
| Total Posts: 6906 |
|
| |
|
bombpaw
|
  |
| Joined: 15 Mar 2009 |
| Total Posts: 3484 |
|
| |
|
|
| 23 Jul 2011 02:50 PM |
| Your algorithm needs refinement, most of those are not easily pronounceable. |
|
|
| Report Abuse |
|
|
|
| 23 Jul 2011 02:54 PM |
Ever Played FATE?
Case closed. |
|
|
| Report Abuse |
|
|
|
| 23 Jul 2011 03:06 PM |
| ^^ The game gets pretty boring after awhile. |
|
|
| Report Abuse |
|
|
|
| 23 Jul 2011 03:06 PM |
| No I have not played 'FATE', case re-opened. |
|
|
| Report Abuse |
|
|
Tenal
|
  |
| Joined: 15 May 2011 |
| Total Posts: 18684 |
|
| |
|
|
| 23 Jul 2011 05:12 PM |
Lets talk about something better then FATE: Burger Fiesta! Lol Its sooo easy to cheat! THEY SAVE THE DATA IN AN XML FILE AND LABEL EVERYTHING! You can get it at ytiCyalPyM
-ITS FREEEEEEEEEEEE |
|
|
| Report Abuse |
|
|
agent767
|
  |
| Joined: 03 Nov 2008 |
| Total Posts: 4181 |
|
|
| 23 Jul 2011 06:30 PM |
| *creates javascript that creates an endless number of accounts |
|
|
| Report Abuse |
|
|
| |
|
Raskuly
|
  |
| Joined: 08 Aug 2011 |
| Total Posts: 4 |
|
|
| 11 Aug 2013 02:56 PM |
I was looking at this with my friend and it looks random.
|
|
|
| Report Abuse |
|
|
dekkonot
|
  |
| Joined: 22 Dec 2010 |
| Total Posts: 6685 |
|
|
| 11 Aug 2013 02:59 PM |
And then you came along. You dangerous bumping lunatic. So you know what? You win. Just go.
It's been fun. Don't come back.
~ Linguam latinam est optimum ~ |
|
|
| Report Abuse |
|
|
zars15
|
  |
| Joined: 10 Nov 2008 |
| Total Posts: 9999 |
|
| |
|
mew903
|
  |
| Joined: 03 Aug 2008 |
| Total Posts: 22071 |
|
|
| 11 Aug 2013 03:23 PM |
I know I'm a few years late, but this code is shorter and does pretty much the same thing - just more memory efficient
local v = {'a', 'i', 'e', 'o', 'u'}; local c = {'b', 'c', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'm', 'n', 'p', 'r', 's', 't', 'v', 'w', 'x', 'y', 'z'}; local e = {'ith', 'ton', 'on', 'field', 'man', 'er', 'ien', 'en', 'un', 'ion', 'ex', 'mel'};
local function sel(tab, start) return tab[math.random(start or 1, #tab)]; end;
function genWord() return string.upper(math.random(1, 2) == 1 and sel(v) or sel(c)) .. sel(v) .. sel(c) .. sel(c) .. sel(e); end;
for i = 1, 100 do print(genWord()); end; |
|
|
| Report Abuse |
|
|
Avocation
|
  |
| Joined: 22 Mar 2011 |
| Total Posts: 107 |
|
| |
|
| |
|
WXBZ
|
  |
| Joined: 10 Oct 2012 |
| Total Posts: 850 |
|
|
| 28 Jun 2017 12:04 PM |
And here we have a grave dug thread.
for _, post in pairs(game.Players.WXBZ.Posts:GetChildren()) do post.Signature.Text = 'scripters.cf' end |
|
|
| Report Abuse |
|
|