Let's say i have
Code:
get_user_name(krcid,veikejas,32)
So
veikejas = players name.
Now I'm geeting a line from .ini file wich may have
<nick> text in it. I want that text
<nick> would be replaced with
veikejas.
I tried
Code:
replace(message, 130, "<nick>", veikejas)
But it still won't replace anything... I thought it could be bad that "<nick>" is in commas so i deleted them and leaved
Code:
replace(message, 130, <nick>, veikejas)
But then i get compile errors...
If someone could help... HELP!
__________________