· 8 years ago · Jan 07, 2018, 04:04 AM
1menu
2Status #evol-devX gumiX
3[01:52] <Crazyfefe> hi
4[01:52] <gumi> hi
5[01:52] <gumi> hold on, I will switch to another PC
6[01:52] <Crazyfefe> ok i think i already have my shh key
7[01:52] <Crazyfefe> kkk
8[01:54] <gumi> you do not need a ssh key for any of the steps
9[01:54] <Crazyfefe> ok
10[01:54] <gumi> first, do WIN + R and type winver
11[01:54] <gumi> I want to know the OS Build
12[01:54] <gumi> and Version
13[01:54] <Crazyfefe> 16299.125
14[01:54] <Crazyfefe> version 1709
15[01:55] <gumi> perfect, you have Fall Creators Update
16[01:55] <gumi> ok let's remove the old LXSS and install the new one
17[01:55] <Crazyfefe> i don't have the new one?
18[01:55] <gumi> nope
19[01:56] <gumi> I assume you installed it by typing "bash" in a console?
20[01:56] <Crazyfefe> no
21[01:56] <Crazyfefe> or
22[01:56] <Crazyfefe> no i didn't
23[01:56] <Crazyfefe> i add it with enable or disable windows feature
24[01:56] <gumi> same thing
25[01:56] <gumi> please do WIN + R and type cmd
26[01:56] <gumi> in the command prompt window type wsl
27[01:57] <Crazyfefe> k
28[01:57] <gumi> what does it do when you type wsl?
29[01:57] <Crazyfefe> yeah
30[01:57] <gumi> that wasn't a yes/no question..
31[01:57] <Crazyfefe> oh sorry
32[01:57] <Crazyfefe> that start lxss
33[01:58] <gumi> so you see Crazyfefe@... ?
34[01:58] <Crazyfefe> yeah
35[01:58] <gumi> ok, type exit and type ubuntu
36[01:58] <gumi> does ubuntu also start lxss?
37[01:58] <Crazyfefe> yeah
38[01:58] <Crazyfefe> same
39[01:58] <gumi> perfect, now let's install the prerequisites
40[01:59] <Crazyfefe> only the parth change
41[01:59] <Crazyfefe> path*
42[01:59] <gumi> open the lxss and do "sudo apt update"
43[01:59] <Crazyfefe> apt-get?
44[01:59] <gumi> apt
45[02:00] <gumi> it's the user-friendly counterpart to apt-get
46[02:00] <Crazyfefe> oh i see
47[02:00] <Crazyfefe> done
48[02:00] <gumi> sudo apt full-upgrade
49[02:00] <Crazyfefe> done
50[02:01] <gumi> ok hold on, lemme find the clang repo
51[02:02] <gumi> wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key|sudo apt-key add -
52[02:02] <Crazyfefe> done
53[02:03] <gumi> sudo echo "deb http://apt.llvm.org/xenial/ llvm-toolchain-xenial main" >/etc/apt/sources.list.d/llvm.list
54[02:03] <Crazyfefe> i don't have the permission
55[02:03] <Crazyfefe> -bash: /etc/apt/sources.list.d/llvm.list: Permission denied
56[02:03] <gumi> you should if you use sudo
57[02:04] <Crazyfefe> Crazyfefe@DESKTOP-ILCDLED:~$ sudo echo "deb http://apt.llvm.org/xenial/ llvm-toolchain-xenial main" >/etc/apt/sources.list.d/llvm.list -bash: /etc/apt/sources.list.d/llvm.list: Permission denied
58[02:04] <Crazyfefe> i copy paste all you send
59[02:05] <gumi> sudo su -c "echo 'deb http://apt.llvm.org/xenial/ llvm-toolchain-xenial main' >/etc/apt/sources.list.d/llvm.list"
60[02:05] <Crazyfefe> work ^^
61[02:05] <gumi> sudo apt update
62[02:05] <gumi> (yes, again)
63[02:06] <Crazyfefe> done
64[02:06] <gumi> sudo apt install clang-6.0
65[02:07] <Crazyfefe> waiting for headers..
66[02:08] <Crazyfefe> and got error
67[02:08] <gumi> what error?
68[02:08] <Crazyfefe> a timeout
69[02:08] <gumi> oh
70[02:08] <gumi> try again
71[02:09] <Crazyfefe> still waiting for headers :/
72[02:10] <Crazyfefe> again timeout
73[02:10] <gumi> :S
74[02:11] <gumi> ok let's try later then... I guess I'll go eat dinner meanwhile
75[02:11] <Crazyfefe> kk
76[02:11] <Crazyfefe> ty for the help
77[02:11] <gumi> I didn't even help yet
78[02:12] <Crazyfefe> you did ^^
79[02:54] <Crazyfefe> finaly done
80[02:59] <gumi> sudo apt install clang-6.0 git automake
81[03:00] <Crazyfefe> done
82[03:00] <gumi> nano ~/.profile
83[03:01] <gumi> it should open a text editor
84[03:01] <Crazyfefe> yep
85[03:01] <gumi> add this at the bottom of the file:
86[03:01] <gumi> export CC="clang-6.0"
87[03:01] <gumi> export CXX="clang++-6.0"
88[03:01] <gumi> and then do CTRL+X to save
89[03:01] <Crazyfefe> done
90[03:02] <gumi> source ~/.profile
91[03:02] <Crazyfefe> done
92[03:02] <gumi> now if you do "echo $CC" it should say clang-6.0
93[03:02] <Crazyfefe> that does
94[03:03] <gumi> sudo apt install python2.7 make realpath build-essential gdb libxml2-utils libgtest-dev valgrind zlib1g-dev
95[03:04] <Crazyfefe> done
96[03:05] <gumi> sudo apt install libmariadb-client-lgpl-dev libmariadb2
97[03:06] <Crazyfefe> done
98[03:06] <gumi> now you will install mariadb on windows
99[03:06] <gumi> and connect to it from lxss
100[03:07] <gumi> hold on please, I have to check some files first
101[03:08] <Crazyfefe> all right
102[03:09] <gumi> https://downloads.mariadb.org/interstitial/mariadb-10.2.12/winx64-packages/mariadb-10.2.12-winx64.msi/from/http%3A//mariadb.mirror.globo.tech/
103[03:09] <gumi> download and run this file
104[03:09] <Crazyfefe> kk
105[03:11] <gumi> just tell me what you see on screen and I will guide you through the install process
106[03:11] <Crazyfefe> oh
107[03:11] <Crazyfefe> i cancel then
108[03:11] <Crazyfefe> ok then
109[03:12] <Crazyfefe> Modify password for data base user 'root'
110[03:12] <Crazyfefe> or
111[03:12] <gumi> or?
112[03:12] <Crazyfefe> use UTF8 as default server's character set
113[03:12] <gumi> o_o
114[03:12] <gumi> you already installed it?
115[03:12] <Crazyfefe> no
116[03:12] <Crazyfefe> i just start
117[03:13] <Crazyfefe> and let the default path
118[03:13] <gumi> well, modify the password of root
119[03:13] <Crazyfefe> did i let enable
120[03:13] <gumi> hold on, let's generate something strong
121[03:13] <gumi> enable what?
122[03:14] <Crazyfefe> enable acces from remorte machines for 'root' user
123[03:14] <Crazyfefe> yes right?
124[03:14] <gumi> NO
125[03:14] <Crazyfefe> remote*
126[03:14] <gumi> definitely no
127[03:14] <Crazyfefe> kk xD
128[03:15] <Crazyfefe> let's generate something strong?
129[03:15] <gumi> now let's choose a strong password for root
130[03:15] <Crazyfefe> oh yeah did
131[03:15] <gumi> choose one
132[03:15] <gumi> foot QUEEN shoulder COLLEGE side
133[03:15] <gumi> BELOW GATHER strike wire SHIRT
134[03:15] <gumi> broad course weather process korea
135[03:15] <gumi> PRESS bone flow FLOOR orderly
136[03:15] <gumi> jump WALES SLOW will radio
137[03:15] <gumi> love thin airplane TOUCH SORRY
138[03:15] <gumi> BIRD sound below hold ANGRY
139[03:15] <gumi> PERSON cold TAKEN first DAMASCUS
140[03:15] <gumi> SEEM industry prove SHOES although
141[03:15] <gumi> FELL anger friday CUBA receive
142[03:15] <gumi> and write it down
143[03:15] <Crazyfefe> kk
144[03:16] <gumi> next step, what does it say?
145[03:16] <Crazyfefe> done
146[03:16] <gumi> all done?
147[03:16] <Crazyfefe> install as service
148[03:16] <Crazyfefe> nope
149[03:16] <gumi> yes, service
150[03:16] <Crazyfefe> service name : ""
151[03:16] <Crazyfefe> Mysql?
152[03:16] <gumi> put mysql
153[03:16] <gumi> lowercase
154[03:16] <gumi> you could also just put sql
155[03:16] <Crazyfefe> enable networking
156[03:17] <Crazyfefe> tcp port : 3306?
157[03:17] <gumi> yes
158[03:17] <gumi> yes 3306
159[03:17] <Crazyfefe> buffer pool size we don't care right?
160[03:17] <Crazyfefe> i let the default one?
161[03:17] <gumi> yup
162[03:18] <Crazyfefe> all done this time ^^
163[03:18] <gumi> the installer closed?
164[03:18] <Crazyfefe> yeah
165[03:18] <gumi> ok now we install heidisql
166[03:18] <gumi> still on windows
167[03:19] <Crazyfefe> hmm
168[03:19] <gumi> https://www.heidisql.com/builds/heidisql64.r5217.exe
169[03:19] <Crazyfefe> with mariadb i got something call heidisql on my desktop
170[03:19] <gumi> it installed already?
171[03:19] <gumi> ok that's perfect
172[03:19] <Crazyfefe> i think yeah
173[03:19] <gumi> open heidisql
174[03:19] <Crazyfefe> done
175[03:20] <gumi> in hostname put 127.0.0.1
176[03:20] <gumi> in user put root
177[03:20] <gumi> and put your password
178[03:20] <Crazyfefe> then open?
179[03:20] <gumi> yes, connect
180[03:20] <Crazyfefe> ok all right
181[03:22] <gumi> Tools > user manager
182[03:23] <gumi> click Add and in username put evol and in password put evol
183[03:23] <gumi> and click save
184[03:23] <Crazyfefe> done
185[03:24] <gumi> do you see a text box named Query?
186[03:24] <Crazyfefe> with all sql command?
187[03:25] <gumi> no
188[03:25] <Crazyfefe> k got it
189[03:25] <gumi> it's a tab
190[03:25] <gumi> with a blue > symbol
191[03:25] <Crazyfefe> yeah
192[03:25] <Crazyfefe> for make sql command
193[03:25] <gumi> put this into it:
194[03:26] <gumi> CREATE DATABASE evol;
195[03:26] <gumi> GRANT SELECT,INSERT,UPDATE,DELETE ON evol.* TO 'evol'@'localhost';
196[03:26] <gumi> and click the blue > button above the tab
197[03:27] <Crazyfefe> nothing happens
198[03:27] <gumi> there is two > buttons
199[03:27] <gumi> one on the tab and one above the tab
200[03:27] <gumi> in the bar with other icons
201[03:27] <Crazyfefe> i click on execute
202[03:28] <gumi> and nothing happens?
203[03:28] <Crazyfefe> but that say nothing happens
204[03:28] <Crazyfefe> yeah 0 lines found 0 change
205[03:28] <gumi> ok, click the disconnect button
206[03:29] <gumi> now instead of root and your password put evol and evol
207[03:29] <Crazyfefe> i think i didn't got connect
208[03:29] <gumi> you did not add the evol user?
209[03:29] <Crazyfefe> i don't find a disconnect button
210[03:29] <Crazyfefe> i add it
211[03:29] <gumi> you don't see disconnect?
212[03:29] <gumi> it's in the button bar
213[03:29] <gumi> the second button
214[03:30] <gumi> "Close selected database connection"
215[03:30] <Crazyfefe> oh k
216[03:30] <gumi> you are at the connection screen?
217[03:30] <gumi> try evol / evol
218[03:31] <Crazyfefe> k done
219[03:31] <Crazyfefe> then same command?
220[03:31] <gumi> no
221[03:31] <gumi> hold on
222[03:33] <gumi> ok we will switch to lxss
223[03:33] <gumi> keep heidisql open
224[03:34] <gumi> sudo apt install libpcre-dev make autoconf libtool
225[03:34] <Crazyfefe> done
226[03:34] <gumi> before we continue, did you make changes to the repo?
227[03:35] <Crazyfefe> wich one ?
228[03:35] <gumi> did you modify scripts? add items?
229[03:35] <Crazyfefe> no
230[03:35] <gumi> ok perfect
231[03:35] <gumi> ls /mnt/c/tmwAthena
232[03:35] <Crazyfefe> i didn't clone evol yet
233[03:35] <gumi> that's not a problem
234[03:36] <gumi> give me the output of the command
235[03:36] <Crazyfefe> logs
236[03:36] <gumi> ok that's fine
237[03:36] <gumi> there is nothing else?
238[03:36] <Crazyfefe> n
239[03:36] <Crazyfefe> no
240[03:36] <gumi> ok now feel free to delete C:\Git
241[03:36] <gumi> we don't need it
242[03:37] <Crazyfefe> did i need to make a ls -a?
243[03:37] <gumi> no
244[03:37] <Crazyfefe> done
245[03:38] <gumi> cd /mnt/c/tmwAthena
246[03:38] <Crazyfefe> k
247[03:38] <gumi> git clone https://gitlab.com/evol/evol-all.git
248[03:38] <Crazyfefe> done
249[03:39] <gumi> cd evol-all
250[03:39] <Crazyfefe> k
251[03:39] <gumi> git clone https://gitlab.com/evol/clientdata.git client-data
252[03:39] <gumi> git clone https://gitlab.com/evol/serverdata.git server-data
253[03:40] <gumi> git clone https://gitlab.com/evol/evol-docs.git docs
254[03:41] <gumi> git clone https://gitlab.com/evol/hercules.git server-code
255[03:41] <gumi> got clone https://gitlab.com/evol/evol-local.git server-local
256[03:42] <gumi> sorry, ^ git clone https://gitlab.com/evol/evol-local.git server-local
257[03:43] <gumi> git clone https://gitlab.com/evol/evol-tools.git tools
258[03:43] <gumi> pushd server-code/src
259[03:44] <gumi> git clone https://gitlab.com/evol/evol-hercules.git evol
260[03:44] <gumi> popd
261[03:45] <gumi> ln -s server-code/src/evol server-plugin
262[03:45] <Crazyfefe> what is popd btw?
263[03:45] <gumi> please tell me when all of this is done, I will be back in 5 minutes
264[03:45] <Crazyfefe> all done
265[03:45] <Crazyfefe> just now
266[03:46] <Crazyfefe> but take your time ^^
267[03:46] <gumi> pushd adds a directory to your path stack and popd empties the stake
268[03:46] <gumi> ok, brb
269[03:46] <gumi> stack* not stake
270[03:46] <Crazyfefe> i c
271[03:50] <gumi> cd server-data
272[03:50] <gumi> make build
273[03:51] <gumi> (this will take a while)
274[03:51] <Crazyfefe> i got an error
275[03:51] <gumi> what error?
276[03:52] <Crazyfefe> https://pastebin.com/y7b9VXiz
277[03:52] <gumi> I see
278[03:52] <gumi> ok let's install pcre
279[03:53] <Crazyfefe> apt get install pcre?
280[03:53] <gumi> sudo apt install libpcre3-dev
281[03:53] <gumi> make build
282[04:00] <Crazyfefe> take a lot of time to make make[2]: Leaving directory '/mnt/c/tmwAthena/evol-all/server-code/src/map'
283[04:00] <gumi> that's normal
284[04:00] <Crazyfefe> kk ^^
285[04:00] <gumi> <gumi> (this will take a while)
286[04:01] <Crazyfefe> yeah i read that ^^
287[04:03] <Crazyfefe> done ^^
288[04:03] <gumi> make config
289[04:04] <Crazyfefe> no sorry
290[04:04] <gumi> no sorry?
291[04:04] <Crazyfefe> https://pastebin.com/y1fJ7JRx
292[04:09] <gumi> I see
293[04:09] <gumi> ok hold on
294[04:10] <gumi> sudo apt install libtool
295[04:10] <gumi> does it say it's already installed?
296[04:10] <Crazyfefe> nope
297[04:10] <gumi> so it is installing?
298[04:11] <Crazyfefe> yeah
299[04:11] <gumi> ok, cool
300[04:11] <Crazyfefe> done
301[04:11] <Crazyfefe> make config?
302[04:11] <gumi> sorry but you have to go through the build process again :(
303[04:11] <gumi> until it builds successfully
304[04:11] <gumi> so make build
305[04:11] <Crazyfefe> kk ^^
306[04:21] <Crazyfefe> this one done :D
307[04:21] <gumi> make config
308[04:21] <Crazyfefe> done
309[04:22] <gumi> ok, let's go back to heidisql
310[04:22] <gumi> do you see "evol" in the sidebar`?
311[04:22] <Crazyfefe> nioe
312[04:22] <Crazyfefe> nope*
313[04:23] <gumi> are you connected?
314[04:23] <Crazyfefe> yeah
315[04:23] <gumi> but there is no evol database?
316[04:23] <Crazyfefe> no only test one
317[04:24] <gumi> sigh
318[04:24] <gumi> ok disconnect
319[04:24] <gumi> and connect with root
320[04:24] <gumi> do you see the evol database with root?
321[04:25] <Crazyfefe> password didn't work now
322[04:25] <Crazyfefe> mb
323[04:25] <Crazyfefe> i don't think evol
324[04:26] <gumi> you still only see test?
325[04:26] <Crazyfefe> i also see information_schema, mysql and performance_schema
326[04:26] <gumi> ok do you see the query tab?
327[04:27] <Crazyfefe> yeah
328[04:27] <gumi> put this in:
329[04:27] <gumi> CREATE DATABASE evol;
330[04:27] <gumi> CREATE USER 'evol'@'localhost' IDENTIFIED BY 'evol';
331[04:27] <gumi> GRANT ALTER,CREATE,SELECT,INSERT,UPDATE,DELETE,DROP,INDEX ON `evol`.* TO 'evol'@'localhost';
332[04:27] <gumi> FLUSH PRIVILEGES;
333[04:27] <gumi> and execute it
334[04:28] <Crazyfefe> Operation create user failed for 'evol'@'localhost'
335[04:28] <gumi> when you go to tools > user manager, do you see evol?
336[04:29] <Crazyfefe> yeah
337[04:29] <gumi> if you click on evol, what does evol have access to?
338[04:29] <Crazyfefe> database : evol
339[04:29] <gumi> so the evol database exists?
340[04:29] <Crazyfefe> but don't have gobal access
341[04:30] <Crazyfefe> i don't think it
342[04:30] <Crazyfefe> but maybe
343[04:30] <gumi> no global access is fine
344[04:30] <gumi> close user management
345[04:30] <gumi> do you see the evol database in the sidebar?
346[04:30] <gumi> where you saw test
347[04:30] <Crazyfefe> i think 4 database but not evol
348[04:31] <Crazyfefe> i can send you a screen shot
349[04:31] <gumi> please
350[04:32] <Crazyfefe> https://img15.hostingpics.net/pics/743550Sanstitre.png
351[04:32] <gumi> hm
352[04:33] <gumi> ok close heidisql completely
353[04:33] <Crazyfefe> done
354[04:33] <gumi> right-click on the windows start menu, and open command prompt (Admin) or powershell (Admin)
355[04:33] <Crazyfefe> done
356[04:33] <gumi> do you see a command prompt?
357[04:33] <Crazyfefe> yeah
358[04:33] <gumi> net stop mysql
359[04:34] <Crazyfefe> ok
360[04:34] <gumi> net start mysql
361[04:34] <Crazyfefe> done
362[04:34] <gumi> close the command prompt and reopen heidi
363[04:34] <Crazyfefe> got it
364[04:34] <Crazyfefe> evol database
365[04:34] <gumi> great
366[04:35] <gumi> are you connected as root or as evol?
367[04:35] <Crazyfefe> as evol
368[04:35] <gumi> perfect :)
369[04:35] <gumi> now click on evol in the sidebar, make sure it has a green checkmark
370[04:35] <Crazyfefe> k
371[04:36] <gumi> do Ctrl+o and open C:\tmwAthena\evol-all\server-data\sql-files\main.sql
372[04:37] <gumi> and execute it
373[04:38] <Crazyfefe> Create command denied to user 'evol'@'localhost' for table 'account_data'
374[04:38] <gumi> can I see a screenshot?
375[04:38] <Crazyfefe> of course
376[04:39] <Crazyfefe> https://img15.hostingpics.net/pics/525408Sanstitre.png
377[04:40] <gumi> damn mariadb is so capricious on your computer
378[04:41] <gumi> disconnect and connect as root
379[04:41] <Crazyfefe> :(
380[04:41] <gumi> open tools > user management
381[04:41] <gumi> tell me which permission evol has on the evol database
382[04:42] <Crazyfefe> only select
383[04:42] <Crazyfefe> delete and insert also
384[04:42] <Crazyfefe> and update
385[04:42] <gumi> nothing else?
386[04:42] <Crazyfefe> no
387[04:42] <gumi> ok, you will check the following:
388[04:43] <gumi> select, alter, create, delete, drop, index, insert, update
389[04:43] <Crazyfefe> done
390[04:43] <gumi> and click save
391[04:43] <Crazyfefe> then disconnect and comeback to evol?
392[04:43] <gumi> :)
393[04:44] <Crazyfefe> this time work
394[04:44] <gumi> the file was loaded?
395[04:44] <Crazyfefe> yeah
396[04:44] <gumi> now do C:\tmwAthena\evol-all\server-data\sql-files\logs.sql
397[04:45] <Crazyfefe> done
398[04:45] <gumi> ok, in lxss, in what folder are you?
399[04:45] <Crazyfefe> server-data
400[04:45] <gumi> ok, write tmux
401[04:46] <Crazyfefe> done
402[04:46] <gumi> write map-server
403[04:46] <gumi> tell me if it says HERCULES
404[04:47] <Crazyfefe> BIRD sound below hold ANGRY
405[04:47] <Crazyfefe> lol
406[04:47] <Crazyfefe> not that
407[04:47] <Crazyfefe> No command 'map-server' found, did you mean: Command 'mtp-server' from package 'mtp-server' (universe) map-server: command not found
408[04:47] <Crazyfefe> that
409[04:47] <gumi> ls
410[04:47] <Crazyfefe> athena-start COPYING gprof.sh login-server map-server script-checker test_char char-server db langs Makefile npc sql-files test_login conf debug-start log mapcache plugins sysinfogen.sh test_map
411[04:48] <gumi> ./map-server
412[04:48] <Crazyfefe> connection refused :/
413[04:48] <gumi> screenshot?
414[04:48] <gumi> or just paste
415[04:49] <Crazyfefe> https://img15.hostingpics.net/pics/801809Sanstitre.png
416[04:50] * gumi facepalm
417[04:50] <Crazyfefe> xD
418[04:50] <gumi> sorry, I'm very tired
419[04:50] <Crazyfefe> all right ^^
420[04:50] <gumi> login-server must be run first
421[04:50] <gumi> do CTRL+C<
422[04:50] <gumi> and ./login-server
423[04:50] <Crazyfefe> k
424[04:50] <Crazyfefe> this one work :D
425[04:51] <gumi> CTRL+B, C
426[04:51] <gumi> it should create another tab
427[04:51] <Crazyfefe> worj
428[04:51] <gumi> ./char-server
429[04:52] <gumi> CTRL+B, C
430[04:52] <Crazyfefe> not really work
431[04:52] <gumi> ?
432[04:52] <Crazyfefe> i have only one tab
433[04:52] <Crazyfefe> not sure where is the first one*
434[04:52] <Crazyfefe> oh sorry work
435[04:52] <gumi> well you see 0:./map-server ?
436[04:52] <Crazyfefe> i see it now
437[04:53] <Crazyfefe> ./login-server yeah
438[04:53] <gumi> yeah, login, sorry haha
439[04:53] <gumi> so now you are in 1 or 0?
440[04:53] <Crazyfefe> ok done
441[04:53] <Crazyfefe> well i have
442[04:53] <gumi> 0 login, 1 char* ?
443[04:54] <gumi> or 0 login, 1 char, 2 *?
444[04:54] <Crazyfefe> not really
445[04:54] <Crazyfefe> 0login 1 :bash 2 :bash 3 char-server
446[04:54] <gumi> oh haha
447[04:54] <Crazyfefe> and now 4:bash
448[04:54] <Crazyfefe> *
449[04:54] <gumi> so now you are in 4?
450[04:54] <Crazyfefe> yeah
451[04:55] <gumi> we have to close the others..
452[04:55] <gumi> exit
453[04:55] <Crazyfefe> i think
454[04:55] <gumi> ctrl+c
455[04:55] <gumi> exit
456[04:55] <Crazyfefe> ok done
457[04:55] <gumi> do you have just 0 1 now?
458[04:55] <Crazyfefe> yeah
459[04:55] <gumi> no 2?
460[04:55] <gumi> 0 login 1 bash?
461[04:55] <Crazyfefe> i just create it now
462[04:55] <Crazyfefe> nono
463[04:56] * gumi facepalm
464[04:56] <Crazyfefe> 0 login 1 char 2 bash
465[04:56] <Crazyfefe> xD
466[04:56] <gumi> ok
467[04:56] <gumi> ./map-server
468[04:56] <gumi> so 0 login 1 char 2 map
469[04:56] <Crazyfefe> yeah
470[04:56] <gumi> do you have manaplus installed?
471[04:56] <Crazyfefe> yes
472[04:57] <gumi> WIN+R
473[04:57] <Crazyfefe> k
474[04:57] <gumi> "C:\Program Files (x86)\Mana\manaplus.exe" --server 127.0.0.1 --port 6901 --server-type Evol2 -u -d "C:\tmwAthena\evol-all\client-data"
475[04:58] <gumi> does this work?
476[04:58] <Crazyfefe> yep
477[04:58] <gumi> ok, press Register and make a new account
478[04:59] <Crazyfefe> done
479[04:59] <gumi> are you in-game now?
480[04:59] <Crazyfefe> yeah :
481[04:59] <Crazyfefe> :D*
482[04:59] <gumi> ok, close manaplus, we will turn your character into an admin
483[04:59] <Crazyfefe> kk
484[04:59] <gumi> heidi is still open?
485[04:59] <Crazyfefe> yep
486[04:59] <gumi> ok
487[05:00] <gumi> in lxss, in 2 do CTRL+C