gggf v.6793

gggf6793.a00

gggf6793.a01

gggf6793.a02

gggf6793.alz

gggf v.6798

gggf6798.a00

gggf6798.a01

gggf6798.a02

gggf6798.alz

========================

 

발동어 : #JSOA

 

선택어 : #선택

 

도움말 : #도움말 (숫)

 

힐 : ㅎ

 

쿨 : ㅋ

========================

 

twrpgS4v0.18f.a00

twrpgS4v0.18f.a01

twrpgS4v0.18f.a02

twrpgS4v0.18f.a03

twrpgS4v0.18f.alz

 

========================

 

발동어 : #JSOA

 

선택어 : #선택

 

도움말 : #도움말 (숫)

 

힐 : ㅎ

 

쿨 : ㅋ

 

올템 : #올템


* 알피지 수정 맵은 스텟을 -힘/-민/-지 이런 식으로 찍기 때문에 혹시라도 처음부터 플레이하는 사람이라면

#선택 을 다른 NPC에게 해두고 스텟을 찍으시길...

이렇게 안하면 정식맵에서 로드 불가능할거임.

 

========================

 

ctd_test11ver.a00

ctd_test11ver.alz

========================

 

발동어 : #JSOA

 

선택어 : #선택

 

도움말 : #도움말 (숫)

 

힐 : ㅎ

 

쿨 : ㅋ

========================

 

twrpgS4v0.18e_100b_fix4.a00

twrpgS4v0.18e_100b_fix4.a01

twrpgS4v0.18e_100b_fix4.a02

twrpgS4v0.18e_100b_fix4.alz

드랍 100배 맵.

========================

 

발동어 : #JSOA

 

선택어 : #선택

 

도움말 : #도움말 (숫)

 

힐 : ㅎ

 

쿨 : ㅋ

 

올템 : #올템


* 알피지 수정 맵은 스텟을 -힘/-민/-지 이런 식으로 찍기 때문에 혹시라도 처음부터 플레이하는 사람이라면

#선택 을 다른 NPC에게 해두고 스텟을 찍으시길...

이렇게 안하면 정식맵에서 로드 불가능할거임.

 

========================

 

DTD-B-0.55.a00

DTD-B-0.55.a01

DTD-B-0.55.a02

DTD-B-0.55.alz

 

"JSO" 타이핑 - 돈 1000000 추가

킹...갓 디랜타..

 

FOCS3 Another 9.6G03.a00

FOCS3 Another 9.6G03.alz

 

========================

 

발동어 : #JSOA

 

선택어 : #선택

 

도움말 : #도움말 (숫)

 

힐 : ㅎ

 

쿨 : ㅋ

========================

import java.io.File;
import java.io.IOException;
import java.text.SimpleDateFormat;
import java.util.Date;

public class Ex02File {

 public static void main(String[] args) throws IOException {
  SimpleDateFormat dateFormat = new SimpleDateFormat("yyyyMMdd");
  
  String today = dateFormat.format(new Date());
  
  File parent = new File("/home/pc36/io", today);
  // File parent = new File("/usr/lib/io", today); // 디렉토리 생성 실패의 경우(권한이 없을 때)
  
  if(parent.exists()) {
   System.out.println("해당 디렉터리가 존재합니다.");
  }else {
   System.out.println("해당 디렉터리가 존재하지 않습니다.");
   
   if(parent.mkdirs()) {
    System.out.println(parent.getPath() + " 디렉터리 생성 완료.");
   }else {
    System.out.println(parent.getPath() + " 디렉터리 생성 실패.");
   }
  }
  
  // 파일 만들기
  File file = new File(parent, "sample2.txt");
  
  if(file.exists()) {
   System.out.println("해당 파일이 존재합니다.");
  }else {
   System.out.println("해당 파일이 존재하지 않습니다.");
   
   if(file.createNewFile()) {
    System.out.println(file.getPath() + " 파일 생성 성공");
   }
   file.setReadOnly(); // 읽기 전용
  }
 }
}

 

#자바 #File #SimpleDateFormat

 

import java.io.File;
import java.io.IOException;
import java.text.SimpleDateFormat;

public class Ex01File {

 public static void main(String[] args) throws IOException {
  
  
 /*
  File file = new File("/home/pc36/io/sample.txt");
  File file = new File("../sample.txt");
  
  System.out.println("getName() : " + file.getName());
  System.out.println("getAbsolutePath() : " + file.getAbsolutePath());
  System.out.println("getCanonicalPath() : " + file.getCanonicalPath());
  System.out.println("getPath() : " + file.getPath());
  System.out.println("getParent() : " + file.getParent());
 */
  
  // 루트 디렉토리 목록 가져오기, 윈도우는 드라이브라는 개념을 사용하여 루트 디렉토리가 여러개다.
  // 윈도우 외에 루트 디렉토리는 하나(/)다.
  
  File[] roots = File.listRoots();
  // System.out.println(roots[0]);
  SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy년 MM월 dd일 (E) HH:mm:ss");
  
  for(int i=0; i<roots.length; i++) {
   File root = roots[i];
   File[] files = root.listFiles(); // 하위 디렉토리, 파일 목록
   
   for(File file : files) {
    // 수정일자, 유형, 파일 크기, 파일명
    System.out.printf("%s\t %s\t %s\t %s\n",
        dateFormat.format(file.lastModified()),
        file.isDirectory() ? "<DIR>" : "   ",
        (file.length()/1024) + "KB",
        file.getName()
        );
   }
  }
 }
}

 

 

Vampire_df_5.3_fix.w3x

========================

 

발동어 : #JSOA

 

선택어 : #선택

 

도움말 : #도움말 (숫)

 

힐 : ㅎ

 

쿨 : ㅋ

========================

 

DTD-B-0.35.a00

DTD-B-0.35.alz

베타 버전이라 그런지 테스트용으로 치트가 들어가 있는 상태인듯함.

-시야 13 타이핑하면 골드 9999원씩 들어옴. 그럼 20000.

+ Recent posts