Author Topic: Trung0246's Workshop, Code Dump, Collections of stuffs, ...  (Read 2131 times)

Trung0246

  • Gaming, coding, drawing, composing, ... for fun
Trung0246's Workshop, Code Dump, Collections of stuffs, ...
« on: April 20, 2017, 04:13:02 AM »
This is the place I will share my work (from good to really stupid one)

Misc:
Code: [Select]
let obj = ObjShot_Create();
ObjShot_Event(obj); //Call this task

@Event {
   alternative (GetEventType())
   case (EV_OBJ_SHOT_NEW) {
      WriteLog("Hello");
   }
}

  • CreateShotZun.dnh (v1.0)
    A library perfectly(?) replicate ZUN shot function in ecl (th13+) script (from ins_600 to ins_607), more will come in future
    Example:
Code: [Select]
CreateShotZun(
   384 / 2, 448 / 2, // equal to ins_603(<id>, x, y)
   1.5, 0.75, // equal to ins_605(<id>, 1.5, 0.75)
   0, 0,  // equal to ins_604(<id>, 0, 0)
   100, 1, // equal to ins_606(<id>, 100, 1)
   9, // equal to ins_607 (see comment in CreateShotZun function for more detail)
   DS_SCALE_YELLOW,
   0 //delay
);
Scripts:
Currently I don't have any playable script... will update this later... (just joined 1 year, learning DMF through Sparen's tutorials..)

I like collecting stuff across the Internet, and research, especially some math formulas like polar equations for bullet pattern or codes... If you want me to find things for you, please reply :) (for adding new stuff for my engine but running out of ideas :( )

Please follow specific rules before asking:
  • Do not ask for illegal stuff, pirated stuff,...
  • I will help only when I have free time, so please don't ask for dead line or things like that
  • Don't expect good result (and don't hate me because this :( )
  • Please describe as detail as possible (plain English is best, don't use fancy English :( )
  • Please know that my knowledge is limited, as same as every fairies, youkai, humans, ... in Gensokyo and around the world
  • Please don't spam, and please don't separate multiple suggestions, just dump all of them in only one reply, except things that really, really interesting for me (may Helepolis will take care of this :3c )
  • Please be nice :)
And here is pending list:
  • Empty...
« Last Edit: August 23, 2017, 10:35:37 PM by Trung0246 »
My workbench & codedump
Gallery & album (WIP)

Trung0246

  • Gaming, coding, drawing, composing, ... for fun
Re: Trung0246's Workshop, Code Dump, Collections of stuffs, ...
« Reply #1 on: August 12, 2017, 02:31:18 AM »
Added two new library that may useful: Event.dnh and CreateShotZun.dnh
My workbench & codedump
Gallery & album (WIP)