Mod Archive Forums Mod Archive Forums
Advanced search  

News:

Please note: Your main modarchive.org account will not work here, you must create a forum account to post on the forums.

Pages: [1] 2 3 4 5 6 ... 10
 1 
 on: April 30, 2024, 02:53:52 
Started by HEXWALKER - Last post by HEXWALKER
cheers, appreciate it!

 2 
 on: April 29, 2024, 12:59:23 
Started by HEXWALKER - Last post by Flashira
Done. :)

 3 
 on: April 29, 2024, 00:12:13 
Started by HEXWALKER - Last post by HEXWALKER
hello, i submitted this module (https://modarchive.org/index.php?request=view_by_moduleid&query=206414) last night, and it seems that in my tired state i chose to not claim ownership of this mod. i created it on friday for a friends tribute album and would like to claim ownership on it, i promise this is not a common mistake that i make.

my artist page is this one right here: https://modarchive.org/index.php?request=view_profile&query=93945

cheers,
HEXWALKER

 4 
 on: April 28, 2024, 16:38:57 
Started by giggler - Last post by giggler
Hi.  I have never uploaded a module before and when I did recently it suggested the module i upload already exists and gave a filename.  I played it and sure enough it has another name.  OK, but stupid me I didnt note down the existing module name, dam it.
It would be neat to include upload suggestion as a search at least for logged in users or something because I tried re-uploading but it says it's pending and didnt give the same details as before.
I know things like there are 20 patterns but I dont seem to be able to search that kind of detail.  It was pretty helpful having a suggestion because I exported it from digital symthony to get a working copy on my old computer and perhaps the original wasnt this format so hash didnt work.  I noticed song length in seconds was the same so that might help.

regards

 5 
 on: April 28, 2024, 09:47:11 
Started by clear2ooo - Last post by clear2ooo
these are 1001% shitposts/bait

recent

i thought you were better m0d. these are not s-post. whatever. at least one person gets it. no need to be triggered.


nothing else follows

 6 
 on: April 28, 2024, 09:39:48 
Started by clear2ooo - Last post by clear2ooo
create "ins"

in a few days i will not have internet anymore.

although probably there are a few more of this kind of program. i provide here. to use how you want. a simple program which is a lua script. to create "ins" file for hivelytracker. it creates a silly sound from two to four steps in size. it is very limited. sometimes it creates sound effect, all keys give the same sound sequence. sometimes it create instrument which doesn't have sequence notes in key of "c". i did something because it kept giving me illegal waveform of "5" on first position. then try to play note and it crashes hivelytracker. so ensure waveform is "1", "2" or "4" for first position only.

this script create file called "createins.ins" in your user's "documents" directory. change it what makes you comfortable. path name assumes linux. but could be changed easily to save file in windows.

Code: [Select]
ran, floor = math.random, math.floor
insfile = {
84, 72, 88, 73, 32, 3, 1, 32, 32, 32, 128,
1, 0, 0, 0, 0, 1, 0, 0, 0, 32, 32, 0,
1, 2, 4, 128, 129, 0, 16, 160, 13, 0, 0, 0,
25, 0, 0, 0, 37, 0, 0, 49, 50, 51, 52, 53,
54, 55, 56, 0
}

binlift_pow2 = { 128, 64, 32, 16, 8, 4, 2, 1 }
function binlift(num, dolift)
    local i
    local iret = 0
    local s = { }
    for i = 1, 8 do
        if floor(num - binlift_pow2[i]) > 0 then
            s[i] = 1
            num = num - binlift_pow2[i]
        else
            s[i] = 0
        end
    end
    if dolift then s[2] = 1 else s[2] = 0 end
    for i = 1, 8 do
        if s[i] == 1 then iret = iret + binlift_pow2[i] end
    end
    return iret
end

numsteps = ran(2, 4)
if numsteps > 2 then
    insfile[31] = 0
    if numsteps == 3 then
        insfile[35] = 160 + ran(0, 2)
    else
        insfile[39] = 160 + ran(0, 2)
    end
end
seqspeed = ran(2, 6)
if seqspeed > 2 then
    insfile[25] = seqspeed
end
-- change "wavelen"
insfile[6] = ran(2, 4)
-- change note in "c" key
--   note: this doesn't always work
insfile[28] = ran(0, 3) * 12 + 129
insfile[32] = ran(0, 3) * 12 + 1
insfile[36] = ran(0, 3) * 12 + 1
insfile[40] = ran(0, 3) * 12 + 1
if ran(1, 2) == 1 then
    -- make all notes fixed!
    insfile[28] = binlift(insfile[28], true)
    insfile[32] = binlift(insfile[32], true)
    insfile[36] = binlift(insfile[36], true)
    insfile[40] = binlift(insfile[40], true)
end
-- change first sequence waveform
if ran(1, 3) == 1 then
    insfile[27] = 129
    if insfile[28] >= 128 then insfile[28] = insfile[28] - 128 end
elseif ran(1, 3) == 1 then
    insfile[27] = 130
    if insfile[28] >= 128 then insfile[28] = insfile[28] - 128 end
elseif ran(1, 3) == 1 then
    insfile[27] = 129
end
-- invent instrument name
for i = 0, 7 do
    insfile[0x2b + i] = ran(97, 122)
end
-- output file
outf = io.open(os.getenv("HOME") .. "/Documents/createins.ins", "wb")
if outf then
    for i = 1, #insfile do
        outf:write(string.char(insfile[i]))
    end
    outf:close()
end


this space is intentionally left blank.

 7 
 on: April 26, 2024, 14:55:09 
Started by mutab0r - Last post by mutab0r
Hi community,

I'd like to draw your attention to the latest release 1.0.5 of the Real SoundTracker (RST). Files can be found on https://sourceforge.net/projects/soundtracker/files/ Real SoundTracker is an open-source tracker supporting MOD and XM formats. Since 1.0.5 it also supports MODPlug extension for stereo samples. I'm now the main developer of RST, so you may address your questions, bug reports and requests to me.

 8 
 on: April 24, 2024, 17:43:39 
Started by digitizedbyfulop94 - Last post by digitizedbyfulop94
Dear All,

I have found a nice piano dance track on a cassette. It had no tracklist or any relevant infos. Music recognition software also didn't help. It should be a mod music, if I'm not wrong.

https://voca.ro/1gTIV7Y782Kr

Thank you in advance for any kind of help.

 9 
 on: April 23, 2024, 08:58:50 
Started by clear2ooo - Last post by looper231
In *some* fairness, OP asked NOT to take his reviews seriously  :azn:

 10 
 on: April 23, 2024, 08:42:04 
Started by clear2ooo - Last post by cs127
these are 1001% shitposts/bait c127, don't get snagged by the line. I'm glad OP chose to share these off-the-site instead of allowing them to spawn heavily in the TMA after hours pool.  ;D  :angel:

thanks <3
I kinda knew I shouldn't have taken it too seriously, but I sometimes have a hard time figuring out what's serious and what isn't. ???

Pages: [1] 2 3 4 5 6 ... 10