Advertisement
Guest User

Untitled

a guest
Dec 10th, 2016
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. 1. Create autoconnect.cs file in the folder \ Life is Feudal Your Own \ scripts \ client \ autoconnect.cs
  2. 2. write the text in the image below:
  3.  
  4. function StartServerConnect ()
  5. {
  6. if (isObject (cmCoreMessageBoxDlg))
  7. {
  8. cmCoreMessageBoxDlg.delete ();
  9. createMessageIDBoxDlg ( "cmCoreMessageBoxDlg");
  10. }
  11.  
  12. if (! isObject (ServerConnection))
  13. {
  14. joinToRemoteServer ( "THE IP", "");
  15.  
  16. }
  17. else if (ServerConnection.getCharacterId ()> 0) return;
  18.  
  19. schedule (1000, 0, StartServerConnect);
  20. }
  21.  
  22. GlobalActionMap.bindCmd (keyboard, "F1", "StartServerConnect ();", "");
  23.  
  24. 3. Go into the game and the console type: exec ( "scripts/client/autoconnect.cs");
  25. 4. Press F1 and wait
  26. 5. If you need to close the game, then write in the console: quit
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement