Jump to content

Cheap edits

CHEAPEDITS.png.76737b5208916cd4a2875ea90
edits who are not meant as actual fighters as they are overpowered and often ko the opponent in one attack

WARNING: most of these chars have rly flashy effects that could hurt the eyes

532 files

  1. Rare Reimu

    Hecho por Phantom.of.the.Server

    8 downloads

       (0 reviews)

    0 comments

    Submitted

  2. D-Reimu

    Hecho por Basara-kun+Donald nemesis

    7 downloads

       (0 reviews)

    0 comments

    Submitted

  3. Ultimate Legendary Over Strongest Unknown-Reimu

    Hecho por okihaito

    4 downloads

       (0 reviews)

    0 comments

    Submitted

  4. 変数式ア&#1

    OP's note (reminder it's in japanese):
    ■このテンプレについて
    変数を利用してアドレスを取得するテンプレ
    簡潔に説明すると、varトリガーの処理を無理やり書き換えてアドレス操作できるようにします
    いわゆる拡張変数(変数拡張)とかリミット解除とか呼ばれてるやつです
    やってること的にはvar(60)やfvar(40)と一緒
    あくまでトリガーの処理を書き換えるだけなのでステコンの方は対応してないです
    コピペや転載はご自由に
    要望とかバグ報告があれば以下にどうぞ(必ず対応するとは限りませんが)
    https://sinomugen.fc2.net/
    ■使用方法
    1.「Data/code.st」を使用したいキャラのフォルダに突っ込む
    2.defファイルに「ai=(code.st配置フォルダ)/code.st」と指定する
    3.「Data/-2.st」の「準備コード実行」とコメントしてあるdisplaytoclipboardを実行する
    4.triggerのvar、var:=、fvar、fvar:=でアドレス操作できるようになるので適当 にやりたいことをやる
    5.「data/-2.st」の「復元コード実行」とコメントしてあるdisplaytoclipboardを実行する
    ステート奪った相手に実行させる場合、param1に1を指定する必要があります
    具体的な使用方法はdef12345を確認してください
    参照方法:
     var(アドレス) :指定したアドレスを絶対値として参照(int)
     fvar(アドレス) :指定したアドレスを絶対値として参照(float)
     var((アドレス-3648)/4) :指定したアドレスを自己アドレスからの相対位置として参照(int)
     fvar((アドレス-3888)/4) :指定したアドレスを自己アドレスからの相対位置として参照(float)
    代入方法:
     var(アドレス):=代入値 :指定したアドレスを絶対値として参照し、代入値を代入(int)
     fvar(アドレス):=代入値 :指定したアドレスを絶対値として参照し、代入値を代入(float)
     var((アドレス-3648)/4):=代入値 :指定したアドレスを自己アドレスからの相対位置として参照し、代入値を代入(int)
     fvar((アドレス-3888)/4):=代入値 :指定したアドレスを自己アドレスからの相対位置として参照し、代入値を代入(float)
    ■落ちる場合の対策
    AIファイルの容量が増えていないか確認してください
    増えているようならテンプレで使用してるAIファイルで上書きすれば直るかも?
    一応対策はしているので基本的にはこの現象は発生しないはず
    準備コードと復元コードの距離が離れている場合落ちる可能性があります
    他のプレイヤーが[0x4B3050]の値を書き換えているのが原因かもしれません
    その場合は以下のどちらかを行えば直ると思われます
    ●●● 1 ●●●
    [state ]
    type=displaytoclipboard
    trigger1=1
    text="%0.0s%0.0s汽$β `怏ヌ��t^蝦������tJ�9菓����1鋗、エ��6�ャH��1メ�妹ノt� �<��� 9チtB�~褄1ノ�エ、エ�� �ャH���窓3�(���6久軌�t�1�ヨ拌逆$���ヌ$ェェ�,$キ面テ%% 862d4CA"
    params=0,4927584;4927568⇒4927584に変更
    ~~~~~
    適当な処理
    ~~~~~
    [state ]
    type=displaytoclipboard
    trigger1=1||var(4933864):=var(4927568)+1204*2;上記と合 わせて4927568⇒4927584に変更
    text="%%f"
    ●●● 2 ●●●
    [state ]
    type=displaytoclipboard
    trigger1=1
    text="%0.0s%0.0s汽$β `怏ヌ��t^蝦������tJ�9菓����1鋗、エ��6�ャH��1メ�妹ノt� �<��� 9チtB�~褄1ノ�エ、エ�� �ャH���窓3�(���6久軌�t�1�ヨ拌逆$���ヌ$ェェ�,$キ面テ%% 862d4CA"
    params=0,4927568;ここは変更しない
    [state ]
    type=varset
    trigger1=1
    var(0):=var(4927568);適当な空いてる変数にvar(4927568)の値を保存
    ~~~~~
    適当な処理
    ~~~~~
    [state ]
    type=displaytoclipboard
    trigger1=1||var(4933864):=var(0)+1204*2;var(492756 8)ではなく保存した変数の値を使用
    text="%%f"
    ■雑記
    別に主体変更テンプレってわけではなかったんですがそういった意図で使われちゃってるっぽいので該当部分を 削除
    あくまでテンプレから主体変更を消しただけなので準備コード・復元コード自体は主体変更使用時に使っても問 題ないはず
    合わせて怠慢で強制タゲしてた部分もprojで殴る形式に変更
    ■更新履歴
    23/03/17
    ・不要な処理を削除
    ・AIファイルの更新をある程度無効化するように
    22/03/29
    ・ReadmeとCNSに補足を色々追加
    ・常時アドレス取得し直してたのを修正
    ・kfm同士で戦わせると2ラウンド目で落ちていたのを修正
    20/07/31
    ・おまけとして付けてた旧版テンプレを削除
    20/07/29
    ・ステ主体変更でステート奪った相手にも実行できるよう修正
     使用例としてステ主体変更を実装
    ・コード改良
    ・alive弄りを削除
    20/07/15
    ・使用方法の記載を修正
    ・kfm.cnsを読み込んでなかったのを修正
    20/07/13
    ・敵に準備コードを実行させられるように修正
     使用例として強制タゲからの超即死投げを実装
    ・一部キャラが相手で落ちてたのを修正
    ・アドレス取得失敗時の保険を追加
    19/12/20
    ・全体的にコードを組み直し
    ・DBOA式テンプレへの対策を追加
    ・SFFの容量が大きすぎる場合エラーになってたのを修正
     具体的にはマイナスアドレスにも対応した
    ・まともなReadmeに書き換えた
    (my note: if you can decypher it let me know for I think it's a tool? not sure my japanese is pretty much in the beginner stages so keep that in mind)

    7 downloads

       (0 reviews)

    0 comments

    Submitted

  5. OROCHI G3-X(1.1 supernull patch)

    1.1 only Please use absolute path when adding characters, otherwise it will crash
    When he releases the ultimate skill, the opponent will be immediately killed
     

    33 downloads

       (0 reviews)

    0 comments

    Submitted

  6. Heaven Buttercup

    same as H-blossom. (don't know where heaven bubbles is though)

    6 downloads

       (0 reviews)

    0 comments

    Submitted

  7. Heaven Blossom

    OP note: "it can just be on 2 pages at the same time"

    10 downloads

       (0 reviews)

    0 comments

    Submitted

  8. Pizzaface

    Op note: "Yep. One of my cheapest null yet! Can beat any character including cheap characters, normal characters, and weak null characters. If you include Both pizza faces It will stop working again." 
    Creator: rockyfan75000

    10 downloads

       (0 reviews)

    0 comments

    Submitted

  9. GAME OVER 2.9

    Not much to say but OP stated this: 
    "char created by CHENGUANXI AKA kurabiye; char created using the beta of code crashed killer as initial base, uses the same method of palletes as original NAO THE PALE KILLER, but whit code voices and other stuff changed like movements, 1P low killer method whitout advertising he would instantaneously win the match in a random moments, if he gets on the floor after a seconds he stand up and win, 8P he gets fake death kill method and clsn1 deletion on enemy, any hit or punch that touch him tries to delete the clsn and clsn1 of the enemy and does an insta fake death on enemy, 12p uses ROOT TO CLIPBOARD and direct clsn deletion whit alive death method and fake death on enemy and at the same time freezes the timer, and makes the enemy stop moving,
    DISCORD OF CHEN GUANXI chen8fengu add him whit the new method of add friends of discord"

    47 downloads

       (0 reviews)

    0 comments

    Submitted

  10. SSSSSSl

    I don't know what to say about this file but OP said this about it: 
    "again the japanese do not cease to impress i dont even know if it is a donald or colonel edit i dont even know WTF this is i i only know is extremely poweful and creepy and defeated my entire roaster i thinks is a Frost/hypernull tier it can disable the taskmanager so be careful."
    Note from me personally:
    As someone that loves cheapies and of all sorts I do not condone or encourage the use of frost tier cheapies I just wanted to say that because they really do tend to mess with task managers and such BUT if you have a virtual machine and are willing to give it a go. go ahead, but this will be the only time I upload a frost tier on here. I am a cheapie conssesiur that just doesn't like any cheapie that potentially corrupts the OS or even, the entire PC in general. but this one I had to upload for archiving reasons because apparently, it was lost media at one point.
    If you guys aren't OK with this type of file being on here let me know and I'll take it down but remember this was considered lost media by a friend and the only way you can get it is OFF of MA but not everyone can access nor, even download off of MA due to obvious reasons of the staff being horrible there.
    UPDATE, THERE'S A PREVIEW OF THE CHARACTER: 
     

    20 downloads

       (0 reviews)

    0 comments

    Updated

  11. WR-Ryu

    Made By Witherower And 1.0 And 1.1 Patch Made By Myself (Ismael The Epic)
    I Sometimes Downloaded Character And It Looks Nice
    But When I Realized That It's Only For Winmugen
    But No Worries Because I Removed ExplodExpansion.st In DBO Folder
    And Now WR-Ryu Now Works On Mugen 1.0 And 1.1
    So Have A Nice Day

    113 downloads

       (1 review)

    1 comment

    Updated

  12. Widerspruch

    Widerspruch by okihaito
    cheap edit of Cirno
    Winmugen only

    11 downloads

       (0 reviews)

    0 comments

    Submitted

  13. The Pacifier

    A berserk, A.I.-only version of Wolverine.  I don't know why it's called the Pacifier.
    By NeoUle AKA [Haddockb]

    138 downloads

       (0 reviews)

    0 comments

    Updated

  14. Killer Mashiro-R

    The hellish creature from the depths of nuke cheapies, based on a creation from NS, and fights to the instrumental of Ugh from Friday Night Funkin'.
    By shirokuma, edited by Kuro Aonix

    185 downloads

       (0 reviews)

    1 comment

    Updated

  15. The_will_of_asterisk

    Cheapie Yuyuko edit. Winmugen only.
    Flashing colors warning
    Character made by Samidare.

    14 downloads

       (0 reviews)

    0 comments

    Updated

  16. Cyless

    Null edit, not playable and winmugen will stop responding. Use at your own risk.
    Character made by Dorafield.

    16 downloads

       (0 reviews)

    0 comments

    Updated

  17. Colorful

    null cheapie touhou edit
    Character made by KOXA MYTH.
     

    9 downloads

       (0 reviews)

    0 comments

    Updated

  18. 0123456789

    a pretty powerful cheap edit of Utsuho Reiuji. 
    Character made by 0123456789.
     

    9 downloads

       (0 reviews)

    0 comments

    Updated

  19. HakurBell [Converted 1.0/1.1]

    HakurBell by Snow Bell                              Converted 1.0/1.1 by Linkgamer2004(me)
    A very cheap version of Reimu
    1st File: Winmugen
    2nd File: Mugen 1.0/1.1

    155 downloads

       (0 reviews)

    0 comments

    Updated

  20. Psy Frame JK Sigma (Sumireko) aka Psychic Highschool Girl with a SIGMA GRINDSET

    author = "Ninnniku"
     
    This character is REAL CHEAP.
     
    Spams a lot of psychic attacks and ain't afraid to give you the Tatsumi treatment (One Punch Man joke)
     
    Her win pose is quite literally the epitome of "*Snap* YEP, this is going in my cringe compilation."

    77 downloads

       (0 reviews)

    0 comments

    Updated

  21. Omega Mario

    A cheap Mario by SC1614

    116 downloads

       (0 reviews)

    0 comments

    Updated

  22. Kuro Aonix

    Kuro Aonix's self insert, focused on a lot of fullscreen nigh-instakill moves, edited from Kuro Dragon.
    By StickofDoom, edited by dawsaw

    46 downloads

       (0 reviews)

    4 comments

    Updated

  23. The No Named Killer Swordsman (1.1 Patch)

    Made By Myself (Ismael The Epic)
    Hope You Enjoy

    29 downloads

       (0 reviews)

    7 comments

    Submitted

  24. Tsujigiri Baiken

    Author: K2
    Cheap edit of Baiken made for high-level tournaments and the like. AI included.
    Author's notes on palette functions are as follows:
     

    30 downloads

       (0 reviews)

    0 comments

    Submitted

  25. Der Rote Baron (1.1 Conversion)

    Der Rote Baron by Shigaraki and converted to 1.1 by Zhyrephxeilvoqoa.
    A really cheap edit of Manfred, a villain NPC from the Arknights gacha game.
     
     

    16 downloads

       (0 reviews)

    0 comments

    Submitted




×
×
  • Create New...