Ak Fighter Pro V316 04-08-2010

Thảo luận trong 'Granado Espada' bắt đầu bởi HeyHiAll, 4/8/10.

  1. amoni

    amoni Mega Man

    Tham gia ngày:
    30/9/04
    Bài viết:
    3,254
    Có 1 sai sót là chưa có ge.exe mới nhất đã được sửa để nhận auto. Có thể down ở topic phía dưới

    Sẽ test ngay
     
  2. tomson0412

    tomson0412 Youtube Master Race

    Tham gia ngày:
    9/8/10
    Bài viết:
    0
    chỉng cái thoát game sau khi chết mặc định là chêt hết mới thoát được không anh?,hay chỉ em cách để mặc định đi
     
  3. HeyHiAll

    HeyHiAll Youtube Master Race

    Tham gia ngày:
    21/6/09
    Bài viết:
    82
    Nói vậy mới đúng. Muốn chỉnh thì hỏi chỉnh như thế nào.
    Chứ cứ nhảy ào vào nói là "nhảm nhí" thì ko đúng đâu. Mỗi người mỗi ý thích, nên tôi làm thì phải làm theo ý thích của tôi chứ.

    Tìm biến DoOutWD ngay phía trên, phần khai báo, gán nó bằng 0 là được.

    Ví dụ:
    .....
    var DoOutWD = 0;//Vậy là ok ngay thôi.
    .....

    ---------- Post added at 21:51 ---------- Previous post was at 21:49 ----------

    = 0 là khi chết ko làm gì.
    -----------------------------------------------------
     
  4. amoni

    amoni Mega Man

    Tham gia ngày:
    30/9/04
    Bài viết:
    3,254
    Ông IPHONE vừa test và báo lại như sau:

    1. Lỗi rio đã fix
    2. Đến lượt viki bị lỗi không summon
    3. Sau khi đổi channel được 4-5 lần thì đứng im như phỗng
     
  5. HeyHiAll

    HeyHiAll Youtube Master Race

    Tham gia ngày:
    21/6/09
    Bài viết:
    82
    Viki phải đặt summon giống như đặt cho CathSum, tức là ON/OFF từng cái một (như Angie, Jack), bất kỳ, trong 5 cái.

    ---------- Post added at 23:09 ---------- Previous post was at 23:08 ----------

    Viki còn xài được cùng lúc 2 stance nữa, tức là phải set đúng Base và Adva Stance.
     
  6. lewinus

    lewinus T.E.T.Я.I.S

    Tham gia ngày:
    6/9/06
    Bài viết:
    504
    Nơi ở:
    Ho Chi Minh City
    Cho xin link luôn đi bạn , kiếm ko thấy :(
     
  7. amoni

    amoni Mega Man

    Tham gia ngày:
    30/9/04
    Bài viết:
    3,254
    Link đây

    http://www.mediafire.com/?dcc4lhomjd4vdcw

    IPHONE bảo bật summon nó cứ đứng im như phỗng.
     
  8. monsterdra

    monsterdra Youtube Master Race

    Tham gia ngày:
    2/11/08
    Bài viết:
    6
    vấn đề của em fix đc rồi sao lịa bị viki nhỉ.
     
  9. Melodylove

    Melodylove Youtube Master Race

    Tham gia ngày:
    3/9/04
    Bài viết:
    7
    Thay cái QuitApp(); thành cái os.execute("shutdown.exe -s -t 0");là nó tắt máy luôn này :D
     
  10. lewinus

    lewinus T.E.T.Я.I.S

    Tham gia ngày:
    6/9/06
    Bài viết:
    504
    Nơi ở:
    Ho Chi Minh City
  11. HeyHiAll

    HeyHiAll Youtube Master Race

    Tham gia ngày:
    21/6/09
    Bài viết:
    82
    Thông tin này cũng hay đấy ^_^.
    Nhưng mà làm vậy nếu bị dis thì không tắt máy được.

    ---------- Post added at 08:38 ---------- Previous post was at 08:36 ----------

    Tôi ko có Viki để thử.
    Nhưng Viki giống CathSum, Angie. Mà 2 em này tôi thử chạy ngon mà.
    Viki không chạy thì hơi lạ đấy.
     
  12. Melodylove

    Melodylove Youtube Master Race

    Tham gia ngày:
    3/9/04
    Bài viết:
    7
    Operating System Facilities
    This library is implemented through table os.

    os.clock ()

    Returns an approximation of the amount of CPU time used by the program, in seconds.

    os.date ([format [, time]])

    Returns a string or a table containing date and time, formatted according to the given string format.

    If the time argument is present, this is the time to be formatted (see the os.time function for a description of this value). Otherwise, date formats the current time.

    If format starts with `!´, then the date is formatted in Coordinated Universal Time. After that optional character, if format is *t, then date returns a table with the following fields: year (four digits), month (1--12), day (1--31), hour (0--23), min (0--59), sec (0--61), wday (weekday, Sunday is 1), yday (day of the year), and isdst (daylight saving flag, a boolean).

    If format is not *t, then date returns the date as a string, formatted according to the same rules as the C function strftime.

    When called without arguments, date returns a reasonable date and time representation that depends on the host system and on the current locale (that is, os.date() is equivalent to os.date("%c")).

    os.difftime (t2, t1)

    Returns the number of seconds from time t1 to time t2. In Posix, Windows, and some other systems, this value is exactly t2-t1.

    os.execute (command)

    This function is equivalent to the C function system. It passes command to be executed by an operating system shell. It returns a status code, which is system-dependent.

    os.exit (
    Mã:
    )
    
    Calls the C function exit, with an optional code, to terminate the host program. The default value for code is the success code.
    
    os.getenv (varname)
    
    Returns the value of the process environment variable varname, or nil if the variable is not defined.
    
    os.remove (filename)
    
    Deletes the file with the given name. If this function fails, it returns nil, plus a string describing the error.
    
    os.rename (oldname, newname)
    
    Renames file named oldname to newname. If this function fails, it returns nil, plus a string describing the error.
    
    os.setlocale (locale [, category])
    
    Sets the current locale of the program. locale is a string specifying a locale; category is an optional string describing which category to change: "all", "collate", "ctype", "monetary", "numeric", or "time"; the default category is "all". The function returns the name of the new locale, or nil if the request cannot be honored.
    
    os.time ([table])
    
    Returns the current time when called without arguments, or a time representing the date and time specified by the given table. This table must have fields year, month, and day, and may have fields hour, min, sec, and isdst (for a description of these fields, see the os.date function).
    
    The returned value is a number, whose meaning depends on your system. In Posix, Windows, and some other systems, this number counts the number of seconds since some given start time (the "epoch"). In other systems, the meaning is not specified, and the number returned by time can be used only as an argument to date and difftime.
    
    os.tmpname ()
    
    Returns a string with a file name that can be used for a temporary file. The file must be explicitly opened before its use and removed when no longer needed.
    
    This function is equivalent to the tmpnam C function, and many people (and even some compilers!) advise against its use, because between the time you call this function and the time you open the file, it is possible for another process to create a file with the same name.
     
  13. HeyHiAll

    HeyHiAll Youtube Master Race

    Tham gia ngày:
    21/6/09
    Bài viết:
    82
    Có cái .clock() có thể xài để đánh giá tải CPU.
    Cái .time() thì xài ok rồi, Scout buff và Doping chính xác thời gian.

    Nếu biết được tên cửa sổ hiện phía trên, giữa màn hình, có cột máu của quái, thì tốt.
    Hi vọng sẽ lấy được từ đó hp và tên của quái, để chạy trốn (chuyển kênh) khi gặp Boss ^_^.

    ---------- Post added at 09:25 ---------- Previous post was at 09:15 ----------

    Nhìn chung Team 3 FT của tôi chỉ AFK ở những nơi rất khó chết. Nếu chết thì chỉ vì:
    -bị PK
    -Gặp Boss
    -Hoặc mất kết nối
    -Mà đã chết thì ko có khả năng hồi sinh (ko Scout, ko Romina,...)

    Bởi vậy tôi đặt mặc định khi chết là thoát game. Rất có lý chứ, đâu phải là "nhảm nhí".
    Hôm qua tôi thả ở Thối Rửa, từ 2h00 đến 7h sáng, 30 phút chuyển kênh 1 lần để kiểm tra.
    Chạy tới sáng ko trục trặc gì hết. Mất khoảng 1k5 bình máu 2500.
     
  14. MyBoss

    MyBoss Mr & Ms Pac-Man

    Tham gia ngày:
    17/5/10
    Bài viết:
    284
    Nơi ở:
    Mộng Ảo
    Sao mình auto ko để cho Sc buff được nhỉ. Trước team musk cal sc không được, giờ team musk romina sc cũng không được. AK biết làm sao ko chỉ mình cái.
     
  15. lewinus

    lewinus T.E.T.Я.I.S

    Tham gia ngày:
    6/9/06
    Bài viết:
    504
    Nơi ở:
    Ho Chi Minh City
    Bạn nào cho xin link down file ge.exe của FPT với , lỡ chép nhầm cái ge.exe auto vào nó rồi h ko khởi động đc game :(
     
  16. HeyHiAll

    HeyHiAll Youtube Master Race

    Tham gia ngày:
    21/6/09
    Bài viết:
    82
    Vi du Scout vi tri so 3:
    -Shift "-" de dat Char[3] Base Stance = 2 (Sinh Luc)
    -Shift "+" de dat Char[3] Adva Stance = 4 (Ho Tro)
    -Ctrl+Shift "," de dat [Scout 3 buff Base Stance]: 1,4,5
    -Ctrl+Shift "." de dat [Scout 3 buff Adva Stance]: 1
    -Khong cho Scout cam dao
    Xong.

    Nhan Space
    Nhan Shift 4
    Scout tai vi tri 3 se buff 2 stance: Sinh Luc (1,4,5 = TinhThan, TocDo, ChuaTri), va Ho Tro (1 = HopNhat)

    ---------- Post added at 13:30 ---------- Previous post was at 13:22 ----------

    Như vậy:
    -team có thể có tối đa 3 scout,
    -3 em này có thể buff 3 (hoặc 6) stance khác nhau.
    -Scout trong AkFtPro buff thông minh, không dẫm đạp lên nhau.
    Ví dụ em số 1 đã buff TinhThan cho toàn team, thì em số 2 sẽ buff tiếp TocDo, và em số 3 sẽ buff tiếp ChuaTri.

    ---------- Post added at 14:25 ---------- Previous post was at 13:30 ----------

    Ak Fighter Pro 2V320 16-08-2010:
    -Fix lỗi Rio tắt buff 1 vẫn buff liên tằng.
    -Không tìm thấy lỗi Viki trong AI nên chưa làm gì với Viki.
    -Có sửa đổi chút ít trong chuyển kênh tự động.

    Tải bằng link ở trang đầu.
    Link chạy thử đã xoá file.
     
  17. tomson0412

    tomson0412 Youtube Master Race

    Tham gia ngày:
    9/8/10
    Bài viết:
    0
    khó hiểu quá vậy là vô chỗ nào chỉnh chết out game được hả anh?
    tại sao võ lâm làm được cái auto tự mua đồ nhỉ ,áp dụng vô GE có được không??
     
  18. nobitu2tuoi

    nobitu2tuoi Youtube Master Race

    Tham gia ngày:
    6/1/10
    Bài viết:
    2
    Qua VL chơi đi. GE mà làm như vậy, tui là người đầu tiên nghỉ.
     
  19. nerovalent

    nerovalent Mr & Ms Pac-Man

    Tham gia ngày:
    26/11/09
    Bài viết:
    166
    Nơi ở:
    Valentine City
    Nếu auto có chức năng này rùi thì mình chắc chắn sẽ xài, nhưng giờ chưa có thì mình hoàn toàn ko ủng hộ chức năng đó mặc dù AK đã từng nói có thể làm được, nhưng mong AK đừng làm :|
     
  20. monsterdra

    monsterdra Youtube Master Race

    Tham gia ngày:
    2/11/08
    Bài viết:
    6
    ám dụng vào Ge thì năng máy lắm mình không đồng ý chơi game 3D chớ phải 2D đâu nên phải tận hưởng đi chỉnh max cấu hình đẹp lắm. Đẹp kiểu thật không phải đẹp giải tạo như mấy game khác
     

Chia sẻ trang này