Skip to content
MPGHThe Dark Arts
/
RegisterLog in
Forum
Community
What's NewLatest posts across the boardTrendingHottest threads right nowSubscribedThreads you follow
Discussion
GeneralIntroductionsEntertainmentDebate FortFlaming & Rage
Board
News & AnnouncementsMPGH TimesSuggestions & HelpGiveaways
More Sections
Art & Graphic DesignProgrammingHackingCryptocurrency
Hacks & Cheats
Games
ValorantCS2 / CS:GOCall of Duty / WarzoneFortniteApex LegendsEscape From Tarkov
+14 moreLeague of LegendsGTA VMinecraftRustROTMGBattlefieldTroveBattleOnCombat ArmsCrossFireBlackshotRuneScapeDayZDead by Daylight
Resources
Game Hacking TutorialsReverse EngineeringGeneral Game HackingAnti-CheatConsole Game Hacking
Tools
Game Hacking ToolsTrainers & CheatsHack/Release NewsNew
Submit a release →Share your cheat, tool, or config with the community.
AINEW
AI Tools
General & DiscussionPrompt EngineeringLLM JailbreaksHotAI Agents & AutomationLocal / Open Models
AI × Gaming
AI Aimbots & VisionML Anti-CheatGame Bots & Automation
Create
AI Coding / Vibe CodingAI Art & MediaAI Voice & TTS
The AI frontier →Where game hacking meets modern machine learning. Jump in.
Marketplace
Buy & Sell
SellingBuyingTradingUser Services
Trust & Safety
Middleman LoungeMarketplace TalkVouch Copy Profiles
Money
Cryptocurrency TalkCurrency ExchangeWork & Job Offers
Start selling →List accounts, services, and goods. Use the middleman to trade safe.
MPGH The Dark Arts

A community for offensive security research, reverse engineering, and AI.

Community

ForumMarketplaceSearch

Account

RegisterLog in

Legal

Privacy PolicyForum RulesHelp & FAQ
© 2026 MPGH · All rights reserved.Built by the community, for the community. For educational purposes onlyContent is shared for security research and education — we don't condone illegal use. You're responsible for complying with applicable laws. Use at your own risk.
Home › Forum › MultiPlayer Game Hacks & Cheats › Realm of the Mad God Hacks & Cheats › Realm of the Mad God Private Servers › Realm of the Mad God Private Servers Tutorials/Source Code › [AS3/CL] High Resolution

[AS3/CL] High Resolution

Posts 1–15 of 39 · Page 1 of 3
LK
lkdjnfoskjednfblksjdfn
[AS3/CL] High Resolution
High Resolution
Hey everyone, i noticed that there is no tutorial on how to make sprites with high resolution. In case you don't know what i mean. Imagin if you had a item on your server that had a 50x50 sprite. Thats what im gonna tell you guys how to do in this post.
However this tutorial will only allow the resolution limit to work for ingame equipment or entities using a idle texture (normal texture) If you don't know the difference between a Idle texture or a animated texture (a moving texture) you can look in your item/entity's xml code. You will see one of theese two tags:

Another note: Some of you, may think: "pff, what a idiot, why not just use remotetextures?" Well yea, this is something else.. I'll not even try to debate that anywhere on planet earth.


<Texture> </Texture> (This is a idle texture)

<AnimatedTexture> </AnimatedTexture> (This is a moving texture)

Without further to do, lets begin


Step 1
First go into the folder where you have all you'r assets. If you are using the AS3 source, they will be in the src folder. Copy the image called: Embeds_lofiObj6Embed_. Paste it on your deskopt and rename it to: Embeds_50x50imgEmbed_ (You dont have to name it this, but i'll do for this tutorial.)

Open the image with your image editing software. (i use paint.net. Wich is NOT the same as the paint you can open on your pc. The reason you should use that, is because it leaves a white background like when you save a jpg image file. Wich we dont want

This step can be confusing for some, if you are confused by now, ask for help below.
Now when the asset is clear, paste in your 50x50 sprites, and they MUST be 50x50. They can be smaller however but just be sure they fit in a box that is 50x50.

Step 2
Drag the image back into the client source, by simply: moving the image on top of the "src" folder.

Step 3
Create a new actionscript file (as file) in the src and call it: Embeds_50x50imgEmbed_
When thats done replace the entire file content with this:
Code:
package
{
import m*****re.*;

[Embed(source="Embeds_50x50imgEmbed_.png")]
public class Embeds_50x50imgEmbed_ extends m*****re.BitmapAsset
{
    public function Embeds_50x50imgEmbed_()
    {
        super();
        return;
    }
}
}
Step 4
Go to: LoadEmbeds.as and find this code:
Code:
public static var lofiObj6Embed_:Class = Embeds_lofiObj6Embed_;
Underneath it paste this:
Code:
public static var 50x50imgEmbed_:Class = Embeds_50x50imgEmbed_;
then find this code:
Code:
 AssetLibrary._05q("lofiObj6", new Embeds.lofiObj6Embed_().bitmapData, 8, 8);
Underneath that paste this:
Code:
 AssetLibrary._05q("50x50img", new Embeds.50x50imgEmbed_().bitmapData, 50, 50);
Now you are done! When you want to add a 50x50 item/entity to your server be sure to use this texture-tag(s) for the xml:
Code:
<Texture><File>50x50img</File><Index>0x00</Index></Texture><

-Enjoy <3
#1 · 10y ago
SE
sebastianfra12
I love it <3
#2 · 10y ago
LK
lkdjnfoskjednfblksjdfn
Quote Originally Posted by sebastianfra12 View Post
I love it <3
Thank you. Means alot (:
#3 · 10y ago
damian007
damian007
So basically adding a new Spritesheet.
good job!
#4 · 10y ago
cxydsaewq
cxydsaewq
Well explained, gj
#5 · 10y ago
ST
Stellar Spark
quick note that if you're on Seraphs' or a similar source

you're gonna wanna use the <ScaleValue>x</ScaleValue> attribute of an item to fit it into the inventory boxes

i get tired of seeing 16x16 pets that stick out of the box
#6 · 10y ago
Lxys
Lxys
can i see an image plex
#7 · 10y ago
LK
lkdjnfoskjednfblksjdfn
Quote Originally Posted by Roxy Lalonde View Post
quick note that if you're on Seraphs' or a similar source

you're gonna wanna use the <ScaleValue>x</ScaleValue> attribute of an item to fit it into the inventory boxes

i get tired of seeing 16x16 pets that stick out of the box
Thanks! I forgot all about it, but i'll make a tutorial for the ScaleValue in a second

- - - Updated - - -

Quote Originally Posted by Versss View Post
can i see an image plex
Sure, this item is supported with <ScaleValue>.. I'm gonna make a tutorial for that in a sec. Here ya go:

#8 · 10y ago
Desire
Desire
Quote Originally Posted by thenired View Post
Thanks! I forgot all about it, but i'll make a tutorial for the ScaleValue in a second

- - - Updated - - -



Sure, this item is supported with <ScaleValue>.. I'm gonna make a tutorial for that in a sec. Here ya go:

Where did you get my personal dildo from
#9 · 10y ago
LK
lkdjnfoskjednfblksjdfn
Quote Originally Posted by Bear View Post
Where did you get my personal dildo from
Well i thought it was a lightsaber.... O.O
#10 · 10y ago
Desire
Desire
Quote Originally Posted by thenired View Post
Well i thought it was a lightsaber.... O.O
I like it rough?
#11 · 10y ago
LK
lkdjnfoskjednfblksjdfn
Quote Originally Posted by Bear View Post
I like it rough?
I hope you're a female and not a kithio, otherwise i would feel ashamed.
#12 · 10y ago
cxydsaewq
cxydsaewq
Quote Originally Posted by thenired View Post
I hope you're a female and not a kithio, otherwise i would feel ashamed.
For Sarcasm? Why?
#13 · 10y ago
Kithio
Kithio
Quote Originally Posted by thenired View Post
I hope you're a female and not a kithio, otherwise i would feel ashamed.
You have no idea how offensive that is do you?

Simple minded creatures such as yourself has no right to comment on the of the high lords of this section!
#14 · 10y ago
W2
W23rd
Nicely done OP
#15 · 10y ago
Posts 1–15 of 39 · Page 1 of 3

Post a Reply

Similar Threads

  • Optional high resolution textures for BF3.By Nirvana in XBOX General Discussion
    11Last post 14y ago
  • High resolution pictures.By Aimless Angel in General
    55Last post 14y ago
  • |Tut| How to play Warrock on a High ResolutionBy ltkort213 in WarRock - International Hacks
    23Last post 19y ago
  • high growBy ace76543 in General Gaming
    3Last post 20y ago
  • High JapsBy Dave84311 in General
    2Last post 20y ago

Tags for this Thread

None