My Brute Forum
Would you like to react to this message? Create an account in a few clicks or log in to continue.



 
HomeSearchLatest imagesRegisterLog in
Registration DOES NOT need an email verification.
Welcome to the biggest MyBrute forum on the internet.
Look at the sections' stickies: you'll find there everything you need to know about the game!

 

 bc question

Go down 
+3
w13winni
bamb@m
n1kos84
7 posters
AuthorMessage
n1kos84
* * * * * *
* * * * * *
n1kos84


Posts : 132
Join date : 2009-09-13

bc question Empty
PostSubject: bc question   bc question Icon_minitimeWed 24 Feb 2010, 04:37

hi guys
i've started using bc a few days now and i was wondering when you hit creation automatigue
is there a way to make it give you pupils with some kind of a good names instead of the random that generates?
if someone knows plz tell me
Back to top Go down
bamb@m
* * * * * * * * *
* * * * * * * * *
bamb@m


Posts : 692
Join date : 2009-08-13
Location : under a palm tree ┏ ( ・o・) ┛♪

bc question Empty
PostSubject: Re: bc question   bc question Icon_minitimeWed 24 Feb 2010, 06:06

1) this would belong in cheats

2) you cannot make endless cool names during automatic creation. the best you could do is dictate the first three or four letters and the rest would be random. if you try to force the first five or more letters to be static, your bc will freeze after 50 or less pupils created, from what I have read. if you want to make pupils with cool names in bc, you're stuck making custom brutes (brute sur-mesure) one-by-one...


good luck! cheers
Back to top Go down
n1kos84
* * * * * *
* * * * * *
n1kos84


Posts : 132
Join date : 2009-09-13

bc question Empty
PostSubject: Re: bc question   bc question Icon_minitimeWed 24 Feb 2010, 06:37

ok thx bamb@m
i guess there is nothing more to say about this
(mods you can delete this)
Back to top Go down
w13winni
VIP
VIP
w13winni


Posts : 282
Join date : 2009-04-17

bc question Empty
PostSubject: Re: bc question   bc question Icon_minitimeWed 24 Feb 2010, 21:52

or you can use that : http://scriptwin.netau.net/name/generer.html (but in french)
Back to top Go down
dentdesabre
VIP
VIP



Posts : 26
Join date : 2009-11-16

bc question Empty
PostSubject: Re: bc question   bc question Icon_minitimeWed 21 Apr 2010, 21:50

bamb@m wrote:
you cannot make endless cool names during automatic creation. the best you could do is dictate the first three or four letters and the rest would be random.

actually, you can do much more than that : it's just that the few people who know enough javascript to play with the name generation file of BC have not a lot of imagination. "wasusuge" is actually one of 8 000 brutes I created using a simple pseudo-japanese name generator. Though one might argue about their "coolness", these names were definitely way better than the "prefix+random stuff" scripts that you can find in the forums. taitoune also did a script with some very smart tricks to generate pronouncable names with random letters ("yulael" was one of them)

Maybe I should start a constest to help unchain the creativity of the BC power users...

to get you guys started : you could use random *syllables* instead of random letters.
Back to top Go down
jcelite
* * * * * * * * *
* * * * * * * * *
jcelite


Posts : 620
Join date : 2009-06-12
Age : 33
Location : España

bc question Empty
PostSubject: Re: bc question   bc question Icon_minitimeWed 21 Apr 2010, 23:23

i found this .. but well i dont know about programming.. excusezmoi :S i even think that it isnt java.. ..XD could you give me tracks about how to put it in bc?? ( if it is possible )

Code:
import random
 
vowels = ["a", "e", "i", "o", "u"]
consonants = ['b', 'c', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'm', 'n', 'p', 'q',
              'r', 's', 't', 'v', 'w', 'x', 'y', 'z']
 
def _vowel():
    return random.choice(vowels)
 
def _consonant():
    return random.choice(consonants)
 
def _cv():
    return _consonant() + _vowel()
 
def _cvc():
    return _cv() + _consonant()
 
def _syllable():
    return random.choice([_vowel, _cv, _cvc])()
 
def create_fake_word():
    """ This function generates a fake word by creating between two and three
        random syllables and then joining them together.
    """
    syllables = []
    for x in range(random.randint(2,3)):
        syllables.append(_syllable())
    return "".join(syllables)
 
if __name__ == "__main__":
    print create_fake_word()
Back to top Go down
Tze
* * * * * * * *
* * * * * * * *
Tze


Posts : 335
Join date : 2009-08-27
Location : Finland

bc question Empty
PostSubject: Re: bc question   bc question Icon_minitimeThu 22 Apr 2010, 17:46

That function is made with python, you can't use it with bc..
Back to top Go down
w13winni
VIP
VIP
w13winni


Posts : 282
Join date : 2009-04-17

bc question Empty
PostSubject: Re: bc question   bc question Icon_minitimeSun 25 Apr 2010, 12:05

i create that if you want ,
after it's easy to modify it :

Code:
function rnd(minv, maxv){
if (maxv < minv) return 0;
return Math.floor(Math.random()*(maxv-minv+1)) + minv;
}
function createName(){
var letters ='aeiouy';
var letters2 ='bcdfghjklmpqrstvwxz';
var tot = '';
for (var i=0; i<3; i++) {
tot = tot + letters2.charAt(rnd(0, letters2.length - 1)) + letters.charAt(rnd(0, letters.length - 1));
}

var num = Math.floor(Math.random()*1000)
var s = tot + num;
return s;
}
Back to top Go down
Sioc
admin
admin
Sioc


Posts : 2785
Join date : 2009-12-19

bc question Empty
PostSubject: Re: bc question   bc question Icon_minitimeSun 25 Apr 2010, 12:16

... or you may try this in order to have more or less pronounceable names:
https://mybrute.forumotion.com/cheats-scripts-f13/bc-namejs-pronounceable-names-generator-t8240.htm
Back to top Go down
jcelite
* * * * * * * * *
* * * * * * * * *
jcelite


Posts : 620
Join date : 2009-06-12
Age : 33
Location : España

bc question Empty
PostSubject: Re: bc question   bc question Icon_minitimeSun 25 Apr 2010, 17:47

ok thanks ! :) ill try these!
Back to top Go down
Sponsored content





bc question Empty
PostSubject: Re: bc question   bc question Icon_minitime

Back to top Go down
 
bc question
Back to top 
Page 1 of 1
 Similar topics
-
» Question about BC
» another question
» Just a question?!
» hi i have a question???
» Question BC

Permissions in this forum:You cannot reply to topics in this forum
My Brute Forum :: Guides & Info :: Cheats & Scripts-
Jump to: