PL/copyAccountData: Difference between revisions
Jump to navigation
Jump to search
Jurandovsky (talk | contribs) No edit summary |
Jurandovsky (talk | contribs) m (Jurandovsky moved page PL/copyAccountData to PL/CopyAccountData) |
(No difference)
|
Revision as of 14:31, 5 March 2016
Funkcja ta pozwala na skopiowanie wszystkich wartości konta z jednego account na drugie.
Składnia
bool copyAccountData ( account theAccount, account fromAccount )
OOP Syntax Help! I don't understand this!
- Method: account:copyDataTo(...)
Wymagane parametry
- theAccount: Konto na które chcesz skopiować wartość.
- fromAccount: Konto z którego kopiujesz wartość.
Zwracana wartość
Funkcja ta zwraca prawdę jeżeli konta zostały podane prawidłowo, lub fałsz w przeciwnym wypadku.
Example
Po wpisaniu komendy /skopiuj kopiuje wartości z konta losowego gracza i przypisuje je na nasze konto
addCommandHandler("skopiuj", function(plr, cmd) local acc = getPlayerAccount(plr) -- pobieramy nasze konto local acc2 = getPlayerAccount(getRandomPlayer()) -- pobieramy konto losowego gracza copyAccountData(acc2, acc) -- kopiujemy z konta 'acc2' wszystkie wartości i przypisujemy je do konca 'acc' end)
Zobacz również
- addAccount
- copyAccountData
- getAccount
- getAccountData
- getAccountName
- getAccountPlayer
- getAccountSerial
- getAccounts
- getAccountsBySerial
- getAllAccountData
- getPlayerAccount
- isGuestAccount
- logIn
- logOut
- removeAccount
- setAccountData
- setAccountPassword
- getAccountByID
- getAccountID
- getAccountIP
- getAccountsByData
- getAccountsByIP
- setAccountName