SA-MP Forums Archive
changenick help - 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: changenick help (/showthread.php?tid=131824)



changenick help - BuLLeT[LTU] - 05.03.2010

Hello. I want to ask, how to check with dini o dudb if exists nickname in database with same characters (not udb_exists) because it doesnt include same nick but with diferent caps. eg, BuLLeT and Bullet. Function will say that username doesnt exist.


Re: changenick help - pierhs - 05.03.2010

pawn Код:
new string[MAX_PLAYER_NAME];
GetPlayerName(playerid, string, sizeof(string));
format(string, sizeof(string), "%s.ini", string);
if(dini_Exists(string))
{
  //do something
}