Re: Why do SAMP players say "kk" for million? -
Kaperstone - 31.10.2017
Quote:
Originally Posted by RazzorFlame
@up most of gamers.
I live in Poland and almost every gamer uses the "kilo-notation".
1k = 1000
1kk = 1 000 000
1kkk = 1 000 000 000
|
Is Poland hinting us something?
OT I think its the opposite, 1M is very popular, I've never seen someone actually using more than 1 k`
Quote:
1kkk everybody knows exactly how much you meant to say.
|
I'd actually think you mean there is one Ku Klux Klan and I doubt anyone outside out of Poland would understand you on the first reading what you mean by "kkk"
no
Quote:
Originally Posted by Mauzen
I prefer mixed roman numerals
10M = 10000
5X = 50
12DCIIX = 7296
94MMMCMXCIX = 375906
This is much more convenient and intuitive.
|
> man my new rig on benchmarks reaches 10M op/s !!
> 10 million ??
> no, 10,000
Quote:
Originally Posted by xXSammyXx
Congratulations, you just admitted that you're dumb or can't read.
The title said KK not KKK so you shouldn't think it by the title, either the title said "for million".
Conclusion, you are dumb or failed in trying to be funny.
|
Or; you don't understand sarcasm.
Re: Why do SAMP players say "kk" for million? -
Pizzy - 31.10.2017
Never seen this before and I've played SAMP for many years. I guess it's different regions of the world who use this
Re: Why do SAMP players say "kk" for million? -
]Kurence[ - 31.10.2017
https://*********/8lCzFLPc_Xg
Re: Why do SAMP players say "kk" for million? -
HeLiOn_PrImE - 31.10.2017
Quote:
Originally Posted by Mauzen
I prefer mixed roman numerals
10M = 10000
5X = 50
12DCIIX = 7296
94MMMCMXCIX = 375906
This is much more convenient and intuitive.
|
=)) made my day
"You must spread more reputation before giving it to Mauzen again"
Re: Why do SAMP players say "kk" for million? -
renatog - 31.10.2017
It's pretty common in Brasil. Each 'K' represents '10і'. So:
1k = 1*10і = 1000;
100k = 100*10і = 100000;
1kk = 1*10і*10і = 1000000;
100kk = 100*10і*10і = 100000000;
1kkk = 1*10і*10і*10і = 1000000000;
Due to 32bit limitation, the maximum amount of money in the servers I played was 4kkk = 4*10і*10і*10і = 4000000000.
It's not wrong/dumb if it's not common in your country/server.
Re: Why do SAMP players say "kk" for million? -
$Marco$ - 31.10.2017
WOAH!
Last time i've seen someone use "kk" to describe a million was back in Mu Online in roughly 2004-5ish when everyone used "kk" to describe a million lol.
Re: Why do SAMP players say "kk" for million? -
RxErT - 31.10.2017
Because they're dumb in Maths
Re: Why do SAMP players say "kk" for million? -
cuber - 31.10.2017
Quote:
Originally Posted by RxErT
Because they're dumb in Maths 
|
Maths
Re: Why do SAMP players say "kk" for million? -
admantis - 03.11.2017
Quote:
Originally Posted by Xeon™
PHP код:
public OnPlayerText(playerid, text)
{
if (!isnull(text))
{
new idx = 0;
while(text[idx] != '\0')
{
if(text[idx] == 'k' && text[idx+1] == 'k' || text[idx] == 'K' && text[idx+1] == 'K')
{
text[idx] = 'M';
text[idx+1] = ' ';
idx += 2;
}
}
}
return 0;
}
|
This will shoot a runtime error since you aren't checking if
idx+1 is within the bounds of
text.
Re: Why do SAMP players say "kk" for million? -
Spmn - 04.11.2017
Yet that code will produce an infinity loop.
Re: Why do SAMP players say "kk" for million? -
Xeon™ - 04.11.2017
Quote:
Originally Posted by Spmn
Yet that code will produce an infinity loop.
|
Yet i did waste only 2 seconds to write that (it's was a joke)
Re: Why do SAMP players say "kk" for million? -
Konverse - 05.11.2017
Me too. Ironic isn't it?