Quote:
Originally Posted by 2F@st
im starting to think that ure an atheist lol ^^
well yea, seriously, theres no "luck" in silkroad nor in any mmorpg (that i know) cuz generally, in alchemy, there are some numbers generated and if its the same number or something near it, then the alchemy is successful. (correct me if im wrong)
|
usually its a random function.
its like:
+0 to +1 random between 1(successful) -70% chance or 0 (fail) -30% chance
+1 to +2 random between 1 -60% or 0 -40%
+2 to +3 random between 1 -50% or 0 -50%
and so on...-this is just an example
its just an algorithm.if you are really lucky you might get to +10 with no fails.
it might either be a pure random function such as
Quote:
|
int random_integer = rand();
|
where it generates a random number between -32768 and +32767
or it might be a bit more elaborate such as
Quote:
int lowest=0, highest=5;
int range=(highest-lowest)+1;
random_integer = lowest+int(range*rand()/(RAND_MAX + 1.0));
|
where i customized it a little to generate a random number between 0 and 5.
its just an algorithm than can be modified in "pow(10,100)" times xDD
so its just pure LUCK