Hallo DMA,
ich hab auch (nach folgendem Schema : http://forum.sa-mp.com/index.php?topic=79810.0#post_data ) einen "Speedtest" durchgeführt und habe nun unter "main ()" folgendes stehen:
main()
{
print("\n----------------------------------");
print(" usefull script snippets and test");
print("----------------------------------\n");
new
time1,
time2,
time3,
time4;
time1 = GetTickCount();
for(new i = 0;i < 1000000;i++) {
strget("lol lol lol lol lol lol lol lol lol",3);
}
time2 = GetTickCount();
time3 = GetTickCount();
for(new a = 0;a < 1000000;a++) {
strret4("lol lol lol lol lol lol lol lol lol",3,4);
}
time4 = GetTickCount();
printf("%d | %d", time2 - time1,time4 - time3);
}
Output: ~6300 | ~5400
Dies kann ich jedoch kaum glauben.
Daher wollte ich fragen, ob ich nicht etwas falsch getan habe und ob dies so stimmen kann.
Mit freundlichen Grüßen,
KornChief.