SA-MP Forums Archive
Help me please, tutorial! - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: Help me please, tutorial! (/showthread.php?tid=88481)



Help me please, tutorial! - user226 - 27.07.2009

help me please, tell me: about ReturnUser
What do mean how to use, etc.


Re: Help me please, tutorial! - user226 - 27.07.2009

up


Re: Help me please, tutorial! - RyDeR` - 27.07.2009

Quote:
Originally Posted by kruts
help me please, tell me: about ReturnUser
What do mean how to use, etc.
Quote:
Originally Posted by kruts
up
OMG, U opened the topic 2 minutes ago and you post up :S


Re: Help me please, tutorial! - Burridge - 27.07.2009

Search, you'll find your answer, also use the Wiki.

https://sampwiki.blast.hk/


Re: Help me please, tutorial! - user226 - 27.07.2009

On the Wiki-samp There nothing about ReturnUser
and in search forum, i do not find ReturnUser



Re: Help me please, tutorial! - SpiderPork - 27.07.2009

- Edited -
Sorry, didn't read the whole Wiki page.


Re: Help me please, tutorial! - paytas - 27.07.2009

I tried to Search "ReturnUser", there are 13 pages of results.. I'm wondering how you use the search tool .


Re: Help me please, tutorial! - user226 - 27.07.2009

Quote:
Originally Posted by paytas
I tried to Search "ReturnUser", there are 13 pages of results.. I'm wondering how you use the search tool .
There is no nothing that would be about ReturnUser



Re: Help me please, tutorial! - Joe Staff - 27.07.2009

Then make one >.> geez

pawn Код:
ReturnUser(name[])
{
  new string[MAX_PLAYER_NAME];
  for(new playerid; playerid < MAX_PLAYERS; playerid++)
  {
    GetPlayerName(playerid,string,sizeof(string));
    if(strfind(string,name,true)>-1)return playerid;
  }
  return INVALID_PLAYER_ID;
}