卓越2008

用一颗谦虚的心面对大家,用一颗坚定的心面对困难,用一颗执著的心面对理想,用一颗虔诚的心面对技术。

导航

2007年4月26日

摘要: 基本要求如下:能看懂中文,有一定语文能力,数学常识,了解基本电脑操作(别仍我,我就曾经遇到一个不会复制粘贴的朋友找我教他外挂的)。到此我不再假设读者有任何其他方面的知识。 学习步骤:1、学习一门高级语言(推荐C/C++) 推荐谭浩强(C++程序设计)2、掌握一种编程工具(推荐VC)3、学习汇编基础(只需要了解,能看明白汇编代码就行)4、了解游戏的基本原理尝试使用FPE、CE等软件修改单机游戏。5、... 阅读全文

posted @ 2007-04-26 13:21 Casm 阅读(351) 评论(0) 推荐(1)

摘要: 加密算法1: public string Base64Encode(string source) { byte[] a1,a2,a3; BitArray b1,b2,b3; a1 = Encoding.Default.GetBytes(source); if (a1.Length %... 阅读全文

posted @ 2007-04-26 13:20 Casm 阅读(1469) 评论(0) 推荐(0)

摘要: 'By:sefwin '解密 Private Function Decode6Bit(ByVal bytes() As Byte) As Byte() Dim i As Integer, j As Integer, m As Integer = 0 Dim bLen As Integer = bytes.Length Mod 4 If b... 阅读全文

posted @ 2007-04-26 13:18 Casm 阅读(613) 评论(0) 推荐(0)

摘要: 1.Private Declare Function FindWindow Lib "user32" Alias "FindWindowA" (ByVal lpClassName As String, ByVal lpWindowName As String) As LongPrivate Declare Function GetWindowThreadProcessId Lib "user32"... 阅读全文

posted @ 2007-04-26 13:17 Casm 阅读(3170) 评论(5) 推荐(0)