Fougerite Official

Fougerite Official 1.9.7

No permission to download
Forgot to update Rust++ dll. Its updated.

FallDamageEvent:


JavaScript:
function On_FallDamage(FallDamageEvent) {
    FallDamageEvent.Cancel();
}
Code:
function On_FallDamage(FallDamageEvent)
    FallDamageEvent:Cancel()
end
Python:
def On_FallDamage(self, FallDamageEvent):
    FallDamageEvent.Cancel()
C#:
public void FallDamage(FallDamageEvent fde) {
    fde.Cancel();
}
ItemPickupEvent:

Python:
def On_ItemPickup(self, ItemPickupEvent):
    ItemPickupEvent.Cancel()
JavaScript:
function On_ItemPickup(ItemPickupEvent) {
    ItemPickupEvent.Cancel();
}
Code:
function On_ItemPickup(ItemPickupEvent)
    ItemPickupEvent:Cancel()
end
C#:
public void ItemPickup(ItemPickupEvent ipe) {
    ipe.Cancel();
}

  • Rust++ God uses falldamage hook now
  • Little Fougerite modifications
Don't expect major updates until next week. Wish me luck for my exams instead :D
FallDamageEvent:

JavaScript:
function On_FallDamage(FallDamageEvent) {
    FallDamageEvent.Cancel();
}
Code:
function On_FallDamage(FallDamageEvent)
    FallDamageEvent:Cancel()
end
Python:
def On_FallDamage(self, FallDamageEvent):
    FallDamageEvent.Cancel()
C#:
public void FallDamage(FallDamageEvent fde) {
    fde.Cancel();
}
ItemPickupEvent:

Python:
def On_ItemPickup(self, ItemPickupEvent):
    ItemPickupEvent.Cancel()
JavaScript:
function On_ItemPickup(ItemPickupEvent) {
    ItemPickupEvent.Cancel();
}
Code:
function On_ItemPickup(ItemPickupEvent)
    ItemPickupEvent:Cancel()
end
C#:
public void ItemPickup(ItemPickupEvent ipe) {
    ipe.Cancel();
}
  • Rust++ God uses falldamage hook now
  • Little Fougerite modifications
Don't expect major updates until next week. Wish me luck for my exams instead :D
  • Like
Reactions: MasterPeace
  • Like
Reactions: MasterPeace
  • Lua Module Updated
  • Jint Module Updated
  • Magma Module Updated
  • Python Module Updated
  • Fougerite Core Updated

  • Modules are now Displaying the Author, Version, and About on load. You just need to define some stuffs at the top of the plugin and you are good to go (If these are missing the Author will be Unknown and the version will be 1.0):
Python:
__author__ = "DreTaX"
__version__ = "1.0"
__about__ = "Awesome plugin"
JavaScript:
var Author = "DreTaX";
var Version = "1.0";
var About = "Awesome Plugin";
Code:
local Author = "DreTaX"
local Version = "1.0"
local About = "Awesome Plugin"
  • All the plugins are now collected to a Global Class which is available from all the modules by simply accessing: PluginCollector.XYZ()
  • net.disconnect doesn't work if the player is not loaded yet, reverted, added new method.
  • Updating HurtEvent properties
  • New properties
  • Core Update
  • Patcher Update. Re-patch!
  • This update has little modifications, and I repatched the on connection event to a different place. Maybe this will solve the disconnect crashes, where the player is not connected fully yet, but disconnects.
  • Magma and Jint update
  • Jint Engine got the ini file methods that It was missing for some reason..
  • Magma Engine Fixes
  • Jint Engine Fixes
  • The above engines wont call the method in a plugin if it doesn't exist
  • Rust++ Got some extra stuffs such as /instakoall Flag: CanInstaKOAll (Don't forget to put instakoall=true in the config!)
  • Rust++ got some Addflag/Removeflag/Kill/Reload Command fixes
  • Fougerite code fixes
  • Like
Reactions: Demo and PearlJ
  • Like
Reactions: Demo and PearlJ
  • RustPPExtension received some more API
  • Little fixes, maybe about mute too?
  • Github updated
  • RustPPExtension received some more API
  • Little fixes, maybe about mute too?
  • Github updated