Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
momg [2024/10/15 20:56] GlitchyZoruamomg [2024/10/28 23:56] (current) – [Trivia] GlitchyZorua
Line 14: Line 14:
 MoMg gallery has its own Mastodon account, which you can visit [[https://toot.melonland.net/@momg|here]] MoMg gallery has its own Mastodon account, which you can visit [[https://toot.melonland.net/@momg|here]]
  
-{{ :screenshot_2024-09-17_at_16-25-46_momg.png?400|}} 
  
 <note important>**MoMG does have some problematic images!** <note important>**MoMG does have some problematic images!**
Line 23: Line 22:
 If there is anything inappropriate, send melon a link to the gif and he'll remove it. If you're an individual who made a gif and don't want it on here, email melon. ALTERNATIVELY, if you are a big company and want to file a copyright suit, send a message to Kyle the IP address owner and he can do what he thinks best.  If there is anything inappropriate, send melon a link to the gif and he'll remove it. If you're an individual who made a gif and don't want it on here, email melon. ALTERNATIVELY, if you are a big company and want to file a copyright suit, send a message to Kyle the IP address owner and he can do what he thinks best. 
 </note> </note>
 +
 +{{ :screenshot_2024-09-17_at_16-25-46_momg.png?400|}}
 +
 +
 +
 +
 +====== Trivia ======
 +- The First Room is always the same 8 gifs!
 +
 +====== Breaking the code ======
 +
 +Forcefully go to the next room
 +<code>
 +room();</code> 
 +
 +You can also do this as well
 +<code>
 +newRoom();</code>
 +
 +
 +Puts the graphic in a frame
 +{{ ::screenshot_2024-10-28_at_15-44-04_html_online_viewer.png?400|}}
 +
 +<code>
 +<link rel="stylesheet" type="text/css" href="https://momg.neocities.org/frames.css" /><div class="picture-frame-1"><img src="https://momg.neocities.org/gifs/i-41399.gif" /></div>
 +</code>
 +
 +Random name generator
 +<code>
 +<script src="https://momg.neocities.org/names.js" charset="utf-8"></script><script>alert(randomFullName());</script>
 +</code>
 +
 +Audio Toggle
 +<code>
 +audioToggle();
 +</code>
 +
 +
 +Sets the number of paintings in a room
 +<code>
 +g.settings.minRoomSize // 5
 +</code>
 +
 +<code>
 +g.settings.maxRoomSize // 25
 +</code>
 +
 +Optimizations for the back button.
 +<code>
 +updateHistory()</code>
 +
 +Tells if song should be on or off.
 +<code>
 +g.global.playMusic // true
 +</code>
 +
 +Outputs the total amount of gifs in the gallery
 +<code>
 +g.settings.frameSize</code>
 +