maierfelix / POGOserver

Pokemon GO server emulator
GNU General Public License v3.0
460 stars 198 forks source link

[Question] How to change your team? #240

Closed Rendaman13 closed 7 years ago

Rendaman13 commented 8 years ago

I was just wondering how to change your team once you get the server set up. Do you do it via the webapi or do you edit one of the .js scripts?

vankxr commented 8 years ago

Database, i guess

devilkkw commented 8 years ago

just edit dbase "user" table, then use: 0-no team 1-blue 2-red 3-yellow.

the sql command are:

UPDATEpogo.usersSETteam='2' WHEREid='88';

need to fix with your dbname,team selected and id of user.

Rendaman13 commented 8 years ago

Thanks!