SA-MP Forums Archive
Change Name - 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)
+--- Thread: Change Name (/showthread.php?tid=505783)



Change Name - JaKe Elite - 10.04.2014

How do you rename your account on the SQLite Database?

I mean the account, name of the account like i am Ronald_Lacson i changed my name to Jake_Hero

How do i do that?


Re: Change Name - Conradus - 10.04.2014

From your filterscript I see you're using SQlite Database Browser.
You can click "execute sql" and execute the following sql query:

Код:
UPDATE `TABLE_NAME` SET `USERNAME_FIELD` = 'Jake_Hero' WHERE `USERNAME_FIELD` = 'Ronald_Lacson'
You have to replace TABLE_NAME and USERNAME_FIELD with the name of the table and the name of the username field in your database.


Re: Change Name - Ari - 10.04.2014

Have it update the SQL during all instances of name changes.

-Force Namechanges
-Namechange requests
-Account Creation

Also make it save the name under
pawn Код:
public OnPlayerDisconnect(playerid, reason)



Re: Change Name - JaKe Elite - 10.04.2014

Thanks i have it work by myself thanks.