vc2010..접속기 만드는 소스?? ( 초보자 )
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
//
using System.Diagnostics;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
// 접속버튼을 눌렀을 때 발생하는 이벤트
private void button1_Click(object sender, EventArgs e)
{
// 린빈 경로 지정
string exportFile = path.GetDirectoryName(Application.ExecutablePath) + "\\린빈파일명"
// 프로세스 생성
Process UserProcess = new Process();
// 프로세스 셀 설정
UserProcess.StartInfo.UseShellExecute = true;
// 린빈 경로
UserProcess.StartInfo.FileName = exportFile;
// 윈도우 창 설정
UserProcess.StartInfo.CreateNoWindow = true;
// 윈도우 창 스타일
UserProcess.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
// 아이피와 포트설정
UserProcess.StartInfo.Arguments = "본인ip 및 포트";
// 프로그렘 시작
UserProcess.Start();
}
private string GetDirectoryName(string executablePath)
{
throw new NotImplementedException();
}
}
}

Freedos82 님의 최근 댓글
네 가능합니다. 2020 07.20 npc teleporter 테이블에서 npc코드 넣고 텔시킬 공간 좌표 찍고 넣으세요. 기본적인 방법도 모르면서 힘들게 수정한 팩을 이리까시나요 ㅎㅎ 2020 07.01 기본적인 팩안에 Config 폴더가 있습니다. 그안에 altsettings라는 파일을 TXT로 열어보시면 ctrl+f로 검색 창 띄운 뒤 운영자 GMCODE 있을꺼에요. 숫자를 메모하신다음에 // 나비켓 테이블 안에 Characters 테이블 여신후 생성 된 GM테이블을 쭉 따라가보시면 .. AccessLeverl 이라고 있어요. 메모하신 숫자를 기입하시고 게임 접속하심 됩니다^^ [[ 케릭터가 켜져있는 상태에선 저장이 안됩니다. ]] 2020 02.06 서버 구동은 하셨는지요^^? 2020 02.06 jdk 1.8로 깔아서 해결봤어요..^^;; icmp bit디펜더 깔고 오류가 나길래 보니 포트 포워딩이 자바를 건들였네요;ㅁ; 2020 01.02