VIXEP - Make it, Share it, Play it
Welcome to VIXEP CITY :vixep:!

Silahkan Log In terlebih dahulu jika anda sudah memiliki VIXEP Account, supaya anda dapat melakukan posting dan bergabung dengan VIXEP Citizen yang lainnya :D

Jika anda belum memiliki VIXEP Account, silahkan Register terlebih dahulu untuk memulai kehidupan baru di VIXEP CITY :D

- VIXEP Staff -
VIXEP - Make it, Share it, Play it
Welcome to VIXEP CITY :vixep:!

Silahkan Log In terlebih dahulu jika anda sudah memiliki VIXEP Account, supaya anda dapat melakukan posting dan bergabung dengan VIXEP Citizen yang lainnya :D

Jika anda belum memiliki VIXEP Account, silahkan Register terlebih dahulu untuk memulai kehidupan baru di VIXEP CITY :D

- VIXEP Staff -
VIXEP - Make it, Share it, Play it
Would you like to react to this message? Create an account in a few clicks or log in to continue.


VIXEP - Make it, Share it, Play it
 
HomePortalUUDLatest imagesSearchRegisterLog in

Share | 
 

 [GM] Serial Key Maker

View previous topic View next topic Go down 
AuthorMessage
Yuyuko Saigyouji
Alumni
Yuyuko Saigyouji

Lokasi : Bandung
Status : OSU!
Jumlah Post : 694
Voucher Voucher : 8226
Reppo : 10
Join Date : 2010-08-21

[GM] Serial Key Maker Empty
PostSubject: [GM] Serial Key Maker   [GM] Serial Key Maker EmptyTue 07 Sep 2010, 11:41

Game Maker
LONG Serial Number Generator
Compability Game Maker 8 Lite/Pro or higher
by: Irfan Gunawan

script ini dibuat untuk membuat Serial Key dalam suatu game/program (game/program buatan sendiri yang pake GM) yang cuman satu tapi panjangnya minta ampun mak~

tenang kok, ora ilegal~

dan jangan lupa, untuk script "RADIX_CHANGE" itu bisa dicari di YoYoGames , cari saja "Hex Scripts". (PM wa diterima)

NB: dalam script ini membutuhkan beberapa data dimodifikasi dahulu, jadi saya persilahkan bagi anda yang suka mengedit suatu script untuk mencoba mengedit sesuai instruksinya~ :sembah:
Code:
//  Serial Key Generator
//  Created by Irfan Guanwan
//    a.k.a. Sakaki
//    a.k.a. Stanley Trainer
//
//  This function produces 1 very detailed serial key, since the
// serial key is based on gathered value itself.
//
//  Require:
// radix_change function (with EXTENSION PACKAGE, or with COPY PASTE the script)
//
// PS : for now, i don't have any interest to argument..
//      so keep try editing this script okay?
//      also don't forget! credit me (this) and the radix_change function maker

var data, res, SIZE, LEVEL;

// just modify below here!
  SIZE = 7 // set the level of the data
  LEVEL = 6 // set the level of the "dash", modify please...
// just modify above here!

// get the default data, modify the original value with another value...
// you can append the data requirement below here

//// example : data[0] = environment_get_name("OS") , it returns Windows_NT
////          data[1] = environment_get_name("TEMP"), it returns C:\DOCUME~1\Kai\LOCALS~1\Temp

// you can append the data requirement above here

// filter, removes the non 0-9A-Za-z :: DON'T MODIFY!! (SYMBOLS KILLER)
var i;
for (i=0;i<SIZE;i+=1) {
  var j;
  j=0
  do {
    var doit;
    doit = true
    // skip in range
    if j >= ord('0') && j <= ord('9') then doit=false
    if j >= ord('A') && j <= ord('Z') then doit=false
    if j >= ord('a') && j <= ord('z') then doit=false
    if doit then data[i] = string_replace_all(data[i],chr(j),"")
    j+=1
  } until (j>= 255)
}

// data get, collect all gathered info :: DON'T MODIFY!
var DATA;
DATA = ""
for(i=0;i<SIZE;i+=1){
  DATA=DATA+data[i]
}

// set the first result, just modify the 2 variables
var from, to;
// modifiable
from = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"
to = "QWE0RTY1UIO2PAS3DFG456HJK7LZX8CVB9NNM"
// modifiable
// this script requires "HEX SCRIPT" extension package
res = radix_change(DATA,from,to)
var resh;
// get the longest size of the result for now, up to you to modify this... :swt:
resh = string_length(res)
// don't modify the formula!! it can kill the final of this function!!
for (i=0;i<=resh;i+=1){
  if i mod LEVEL == 5 && i>0 then {
    var L, M, R, I;
    I = i + floor(i/LEVEL)
    L = string_copy(res,0,I)
    R = string_copy(res,I+1,resh-I)
    M = "-"
    res = L+M+R
  }
}

// removes the final dash on final letter, don't modify....
if string_copy(res,string_length(res)-1,1) == "-" then res=string_copy(res,0,string_length(res)-2)
return res

silahkan copas ke gm..

:peace: NB: ora guna buat cari SN dalam game/program non-buatan sendiri...
arigatou~ :sakaki:
Back to top Go down

 

[GM] Serial Key Maker

View previous topic View next topic Back to top 

 Similar topics

-
» [Touhou]Share your replay!
» SERIAL Komik Super Duper Ancur!!!!
» RPG maker vx dan RPG maker vx ace
» [ask] Sekilas Rpg Maker
» [URGENT] NEW RPG MAKER !
Page 1 of 1

Permissions in this forum:You cannot reply to topics in this forum
VIXEP - Make it, Share it, Play it :: Bengkel :: Script Lainnya-