|
|
|
|
Posted: Thu Oct 27, 2011 8:44 pm
getting ready to own some folks in this Revamped NFS Lulz.
|
 |
 |
|
|
|
|
|
|
|
|
Posted: Thu Oct 27, 2011 10:28 pm
|
|
|
|
|
|
|
|
|
Posted: Fri Oct 28, 2011 4:29 am
why can gaia never release the nice item for gold stores
|
 |
 |
|
|
|
|
|
|
|
|
Posted: Fri Oct 28, 2011 6:38 am
@Blaize- Rocking out~
@Play- Cause they want your money!
Note to Sai: Write 1) Compare Sample Quiz to Actual Quiz - Tell me the differen....ce... ******** stupid teacher. 2) Answer each que..s..tion.... God pathetic.... This is an easy extra credit thingy >_>
|
 |
 |
|
|
|
|
|
|
|
|
|
|
Posted: Fri Oct 28, 2011 8:39 am
|
|
|
|
|
|
|
Posted: Fri Oct 28, 2011 11:02 am
Is there an ETA on when the revamp will be completed?
|
 |
 |
|
|
|
|
|
|
|
|
|
|
Posted: Fri Oct 28, 2011 12:16 pm
Blaize Raiden Is there an ETA on when the revamp will be completed? Well the place is RP Operational, and the system will be operational by tonight, tomorrow. The completed work wont be done for a while though, but thats basically just us continuously adding in and perfecting things. The Crew has high aspirations for the guild 8D
|
 |
 |
|
|
|
|
|
|
|
|
Posted: Fri Oct 28, 2011 3:03 pm
Hehehehhe.... Updating... Updating... Well... Maybe not quite... I'll wait awhile...
|
 |
 |
|
|
|
|
|
|
|
|
|
|
Posted: Fri Oct 28, 2011 3:46 pm
Hi all! =)
soooo who's read the new Naruto chapter? ^_^
|
 |
 |
|
|
|
|
|
|
|
|
Posted: Fri Oct 28, 2011 3:53 pm
Me!!!!
Oonogi needs to kick some Uchiha booty!
|
 |
 |
|
|
|
|
|
|
|
|
|
|
Posted: Fri Oct 28, 2011 5:02 pm
Ok. I have a question. Is there somewhere where a crew member has posted an example RP with the number of lines included?
I'm trying to write a Python script that I can run my posts through that will tell me the number. Basically, if someone can say Post X is 4 lines, I'll count the characters, divide by 4, and get a working definition of a line. I'd be willing to make this tool available to members so that we (and mods doing the updates) don't have to manually count.
|
 |
 |
|
|
|
|
|
|
|
|
Posted: Fri Oct 28, 2011 6:30 pm
If you set Gaia to Center-mode thats the setting it gos off of.
otherwise I think you can get it right with Microsoft word on pt 10 font with Calibri font
|
 |
 |
|
|
|
|
|
|
|
|
|
|
Posted: Fri Oct 28, 2011 6:42 pm
I do a cha cha all night long. I said, I do a cha cha all night long. Who wants boo sacks? You want boo sacks! BOO SACK BOO SACK BOO SACK!!! I do a cha cha all night long. I said, I do a cha cha all night long. Who wants boo sacks? You want boo sacks! BOO SACK BOO SACK BOO SACK!!! I do a cha cha all night long. I said, I do a cha cha all night long. Who wants boo sacks? You want boo sacks! BOO SACK!! That's 4 lines o-o
|
 |
 |
|
|
|
|
|
|
|
|
Posted: Fri Oct 28, 2011 6:42 pm
That is a awesome idea Blazie, but that sound like a lot of work, if you have MS word or Open office, dump your rp and any other people that you and rping with into it, remove blank line then use it line count function
also your program would be off because size of all the characters isn't factored in, asuming you using a character count, then applying that count to a formula, something like below
double count = character.text.length double lines = count / 4 * 35 //assuming 35 characters to a line double exp = lines * 4 return exp
|
 |
 |
|
|
|
|
|
|
|
|
|
|
Posted: Fri Oct 28, 2011 7:19 pm
Turns out there are ~101 characters in a line (403 in 4 lines, so I rounded up). Given that, python makes the script relatively simple:
count = 0 //Strings are just arrays of chars for x in text: if x != 'n': count +=1 lines = count / 101 print('Lines:' + lines) exp = lines*4 print('Experience: ' + exp)
|
 |
 |
|
|
|
|
|
|
 |
|