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 › MMOEmpire Custom Projectile Tutorial (easy)

PostMMOEmpire Custom Projectile Tutorial (easy)

Posts 1–5 of 5 · Page 1 of 1
Owlupus
Owlupus
MMOEmpire Custom Projectile Tutorial (easy)
Required for this tutorial:
- MMOEmpire Server v2 or v3
- Visual C# 2010 Express

This is a very simple tutorial. It will allow you to make custom projectiles shoot out of your custom items, change projectiles of monsters, etc.

This tutorial is made for people who know how to create custom items. I recommend viewing a tutorial on that before this.

1. Open the solution in Visual C#.

2. Open up additions.xml and dat32.xml.

3. Copy a projectile from dat32.xml into additions.xml.
Notes:
-Rotation means the projectile will rotate while in mid air
-AngleCorrection will change the angle of the projectiles if you are shooting more than one (on demon blade there is a larger angle than double bow)

3 1/2. Make sure to change the type= and id= to something that is unique.

4. Make a custom sprite using this tutorial.

Optional 5. Make a custom item using this tutorial and add a custom texture if you wish using this tutorial.

6. Now change <ObjectId> under <Projectile> in a weapon xml or behavior class to the id= of your projectile.

Here's an example of my projectile and weapon in additions.xml:
Code:
  
//PROJECTILE

<Object type="0x15BA" id="Magic Dagger">
    <Class>Projectile</Class>
    <Texture>
      <File>lofiObj5</File>
      <Index>0x88</Index>
    </Texture>
    <Rotation>100</Rotation>
  </Object>
 
//WEAPON

 <Object type="0x15B9" id="Dagger of the Exotic Sea Creature">
    <Class>Equipment</Class>
    <Item/>
    <Texture>
      <File>lofiObj5</File>
      <Index>0x89</Index>
    </Texture>
    <SlotType>2</SlotType>
    <Description>A dagger crafted with the bones of an exotic sea creature.</Description>
    <RateOfFire>1.15</RateOfFire>
    <Sound>weapon/fire_dagger</Sound>
    <Projectile>
      <ObjectId>Magic Dagger</ObjectId>
      <Speed>180</Speed>
      <MinDamage>125</MinDamage>
      <MaxDamage>175</MaxDamage>
      <LifetimeMS>325</LifetimeMS>
    </Projectile>
    <ActivateOnEquip stat="26" amount="2">IncrementStat</ActivateOnEquip>
    <ActivateOnEquip stat="22" amount="4">IncrementStat</ActivateOnEquip>
    <ActivateOnEquip stat="28" amount="2">IncrementStat</ActivateOnEquip>
    <BagType>4</BagType>
    <FameBonus>6</FameBonus>
    <NumProjectiles>2</NumProjectiles>
    <OldSound>daggerSwing</OldSound>
  </Object>
#1 · edited 13y ago · 13y ago
Alde.
Alde.
Sexy and classy!
Thanks man <3
Big love for this awesome tutorial
#2 · 13y ago
analfabetic
analfabetic
~
Can someone help me? my source code:

Code:
<Object type="0x15BA" id="Beam Slash">
    <Class>Projectile</Class>
    <Texture>
      <File>lofiObj5</File><Index>0x88</Index>
	</Texture>
  </Object>
And the weapon:

Code:
 <Object type="0xe2" id="Ray Katana">
    <Class>Equipment</Class>
    <Item/>
    <Texture>
      <File>lofiObj6</File>
      <Index>0x59</Index>
    </Texture>
    <SlotType>2</SlotType>
    <Description>A great katana charged with the power of the sun itself..</Description>
    <RateOfFire>1.1</RateOfFire>
    <Sound>weapon/dirk</Sound>
    <Projectile>
      <ObjectId>Darkness Bolt</ObjectId>
      <Speed>150</Speed>
      <MinDamage>60</MinDamage>
      <MaxDamage>95</MaxDamage>
      <LifetimeMS>500</LifetimeMS>
    </Projectile>
    <BagType>4</BagType>
    <OldSound>daggerSwing</OldSound>
    <FameBonus>6</FameBonus>
  </Object>
something is worng with the projectile. Please help :3

EDIT:Solved (I was not putting my projectile in Addidtion.xml)
#3 · edited 13y ago · 13y ago
Easyuse
Easyuse
Anyone know how to make a custom monsteR?
#4 · 11y ago
retrorealm
retrorealm
Cheers for this very helpfull
#5 · 11y ago
Posts 1–5 of 5 · Page 1 of 1

Post a Reply

Similar Threads

  • CA Mod's Tutorial: Easy Model EditingBy Kuro Tenshi in Combat Arms Europe Hacks
    5Last post 16y ago
  • [Tutorial] Easy Modern Warfare 2 rank hackBy Inmolak in General Hacking
    2Last post 16y ago
  • [Tutorial] Easy C+P Textues.By marvinp808 in Combat Arms Mod Tutorials
    7Last post 16y ago
  • Custom ISNIPE. Pretty Easy I Think.By maxgork131 in Call of Duty Modern Warfare 2 GSC Modding Help/Discussion
    4Last post 15y ago
  • [Tutorial]Easy VB TrainerBy Abstract in Call of Duty Modern Warfare 2 Coding / Programming / Source Code
    38Last post 16y ago

Tags for this Thread

#easy#simple#useless