28.06.2009, 05:23
Also, here's some more examples for GetValue:
pawn Код:
print(GetValue("Hello, my name is John",0)); // Will print "Hello,".
print(GetValue("Hello, my name is John",1)); // Will print "my".
print(GetValue("Hello, my name is John",2)); // Will print "name".
print(GetValue("Hello, my name is John",3)); // Will print "is".
print(GetValue("Hello, my name is John",4)); // Will print "John".
print(GetValue("Hello, my name is John",5)); // Will print "-1".
print(GetValue("Hello, my name is John",3,true)); // Will print "is John".
print(GetValue("Hello, my name is John",1,false,",")); // Will print " my name is John".