Solved Wheres Magma ?

maughanorama

Member
Member
Nov 27, 2014
181
10
18
50
Hi all

does anyone know wher gomagma.org went ? or the plugins anyway ?
im looking for a an AREANA plugin and i remember magma having one but i cant find the site anymore
 

Jakkee

Retired Staff
Retired Staff
Plugin Developer
Jul 28, 2014
1,465
932
113
Australia
Nice one ill try it later.. shame magmas gone. There must be a repo somewhere of the plugins
Theirs a few Russian websites with some magma plugins.
I know theirs a fake Russian website faking another Russian magma website and the downloads are full of Virus's (E.G: Arena++.exe)

Heres a link to one that I believe is 100% legit.
http://rustmagma.ru/plaginy-dlja-servera-rust/magma-plaginy/
But don't take my word for it, Some plugins may have backdoors in the code.

TIP: Right click on the website page (Not on links/images) and select "Translate to English"
 

Jakkee

Retired Staff
Retired Staff
Plugin Developer
Jul 28, 2014
1,465
932
113
Australia
@DreTaX Look what I found... PortalGun thingy xD
http://rustmagma.ru/173-plagin-tpmaster-dlya-magma.html

JavaScript:
case "p":
    if(Player.Admin){
      var location;
      var distArray = [];
      var hits = UnityEngine.Physics.RaycastAll(Player.PlayerClient.controllable.character.eyesRay);
      if(hits.Length > 0){                      
         for(var i=0; i < hits.Length ; i++ ){
            distArray.push(Math.ceil(hits[i].distance));                          
         }
         var mindist = Math.min.apply(Math, distArray);
         var targetloc = Util.Infront(Player, mindist);
         var terrainhg = World.GetGround(targetloc.x, targetloc.z);
         Player.TeleportTo(targetloc.x, terrainhg + 2, targetloc.z);
      }
   }
break;
 

maughanorama

Member
Member
Nov 27, 2014
181
10
18
50
cool, shame magma went because there was some cool plugins. nice one for finding that site ill get as many plugins as i can.

also whilst we on the plugins is there a way of converting oxide plugins ? probably been asked here before ..

thanks
 

DreTaX

Probably knows the answer...
Administrator
Jun 29, 2014
4,093
4,784
113
At your house.
github.com
cool, shame magma went because there was some cool plugins. nice one for finding that site ill get as many plugins as i can.

also whilst we on the plugins is there a way of converting oxide plugins ? probably been asked here before ..

thanks
We could put LUA in, but It's shet, and It wouldn't call oxide calls. We can convert their plugins though to py or anything else.
 

Jakkee

Retired Staff
Retired Staff
Plugin Developer
Jul 28, 2014
1,465
932
113
Australia
cool, shame magma went because there was some cool plugins. nice one for finding that site ill get as many plugins as i can.

also whilst we on the plugins is there a way of converting oxide plugins ? probably been asked here before ..

thanks
Its not too hard to convert Lua to Python, The only problem is that you have to write the whole thing from scratch as you can not copy and paste.
You can not use online programs to convert Lua to Python and even if you could 100% convert it, You'd still have to change the Hooks and methods its calling.
We could put LUA in, but It's shet
Yeah I agree, its pretty ugly code as well. #SayNoToLua
 
  • Like
Reactions: DreTaX