Gaming and Programming (coding) chat thread.

Started by Sting Chameleon, May 16, 2016, 07:39:41 PM

Previous topic - Next topic

Sting Chameleon

I did a search online by deleting the text of this thread's web address and typed up
Delphi Flash dll
but I still would like to know is it possible to program a completely harmless working excellent dll
that would enable me to make a dll that when called with Game Maker Studio and a game is saved all of its data is saved as a flash .swf game that works excellently?



In the flash game making program Stencyl
how with Haxe programming language do I Jason code play sound in game from website?


^ Example:

var Johnathan;
Johnathan = "website_toplay_sound_from";
play_sound_from_website(Johnathan);

and website_toplay_sound_from gets played in the game for example.



I love making and playing Legend of Zelda quests with
Zelda Classic 2.5
Zelda Classic 2.10
Zelda Classic 1.84
Zelda Classic 1.83
etc.



I also have and use Game Maker 7.0 Pro Edition alot.



I look up a lot of awesome (highly great) stuff so that I can learn and teach coding.
N. Usa (North United States of America) & (and)
My name is Jason & I was born in N. Usa & I live in N. Usa
& I am from N. Usa these forums and Metallica's music are both awesome.

doorknob

the only game I mod is sims. I recently bought sims 4 and have yet to play it. I'm also in the process of modding it. Modding the sims is the best thing about the game. Mods keep the game alive. It gives me a deverse tool to make machinema with. But only help with sims 2 and sims 4 for now.

But what your asking is possible I just can't really help you with it as DLLs can be tricky to alter. I do a little programing here or there and some times play with code but I'm no expert so sorry I can't really help with what you are trying to do.

dtq123

public static Boolean IsAlive (Boolean Frisk, Boolean Flowey){
if((Frisk == true) &&(Flowey == true)){
return null;
}
else{
return Frisk
}

//Based on what I remember from last year's java class.
A dark cloud looms over.
Festive cheer does not help much.
What is this, "Justice?"

gentle_dissident

As soon as I get a better computer than my 9 year old Dell, I'd like to use one of the Unreal engines to create a game I've been putting together in my head for years. I'm going to need some help in learning what are the best new computer features for the buck. I used to be employed as a 3D computer artist in the late eighties. I mostly used AT&T's Topaz. I worked for BCD, a small company that built animation controllers in a garage. I got tired of the glam life, and I wasn't into cocaine.

Baruch

Quote from: gentle_dissident on May 16, 2016, 11:50:19 PM
As soon as I get a better computer than my 9 year old Dell, I'd like to use one of the Unreal engines to create a game I've been putting together in my head for years. I'm going to need some help in learning what are the best new computer features for the buck. I used to be employed as a 3D computer artist in the late eighties. I mostly used AT&T's Topaz. I worked for BCD, a small company that built animation controllers in a garage. I got tired of the glam life, and I wasn't into cocaine.

Heretic!  Programmers drink Jolt Cola ;-)
Ha’át’íísh baa naniná?
Azee’ Å,a’ish nanídį́į́h?
Táadoo ánít’iní.
What are you doing?
Are you taking any medications?
Don't do that.

gentle_dissident

#5
Quote from: Baruch on May 17, 2016, 12:12:54 AM
Heretic!  Programmers drink Jolt Cola ;-)
...while programming my Atari 1200XL.

My early eighties setup.

Baruch

Quote from: gentle_dissident on May 17, 2016, 12:14:53 AM
...while programming my Atari 1200XL.

My early eighties setup.


You were the boss, that Atari was a good system.  Too bad MS gave us all ... MS ;-(
Ha’át’íísh baa naniná?
Azee’ Å,a’ish nanídį́į́h?
Táadoo ánít’iní.
What are you doing?
Are you taking any medications?
Don't do that.

Sting Chameleon

Need to know how to do if relative working properly in GML (Game Maker Language)?


Here is an example (we will use an instance of an object named Kerry for this example) :
Create Event

score_times_by = 1;
score_plus = 0;
score_minus = 0;
score_divided_by = 1;
score = 115;




Step Event

if (score_times_by <> 1)
{
  score *= score_times_by;
  score_times_by = 1;
}
if (score_plus <> 0)
{
  score += score_plus;
  score_plus = 0;
}
if (score_minus <> 0)
{
  score -= score_minus;
  score_minus = 0;
}
if (score_divided_by <> 1)
{
  score /= score_divided_by;
  score_divided_by = 1;
}
if (score_times_by = 14)
{
  x = floor(random(room_width));
  y = floor(random(room_height));
}
if (score_plus = 14)
{
  x = xstart;
  y = ystart;
}
if (score_minus = 13)
{
  y -= 17;
  gravity = 0.25;
}
if (score_divided_by = 14)
{
  sound_play(sound_whistle);
}
if (keyboard_check_pressed(ord("T")))
{
  score_times_by = 14;
  show_message("Score is: "+string(score));
}
if (keyboard_check_pressed(ord("P")))
{
  score_plus = 14;
  show_message("Score is: "+string(score));
}
if (keyboard_check_pressed(ord("M")))
{
  score_minus = 13;
  show_message("Score is: "+string(score));
}
if (keyboard_check_pressed(ord("D")))
{
  score_divided_by = 14;
  show_message("Score is: "+string(score));
}
N. Usa (North United States of America) & (and)
My name is Jason & I was born in N. Usa & I live in N. Usa
& I am from N. Usa these forums and Metallica's music are both awesome.