Jump to content

Search the Community

Showing results for tags 'injection'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • News & Announcements
    • News
  • Project Zomboid
    • PZ Updates
    • General Discussions
    • Bug Reports
    • PZ Support
    • PZ Multiplayer
    • PZ Community & Creativity
    • PZ Suggestions
  • PZ Modding
    • Tutorials & Resources
    • Mods
    • Items
    • Mapping
    • Mod Ideas and Requests
  • General Games Development
    • Indie Scene
  • Other Discussions
    • General Discussion
    • Forum Games & Activities

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


AIM


MSN


Website URL


ICQ


Yahoo


Jabber


Skype


Twitter


Interests

Found 1 result

  1. I'm trying but my function doesn't work. What am I doing wrong? print('Hello!'); -- test passed, the mod is working require "recipecode" local old_RipClothing_OnCreate = RipClothing_OnCreate; if not old_RipClothing_OnCreate then error('ERROR: Cant inject into RipClothing_OnCreate'); -- test passed (no error, defualt function found) end function RipClothing_OnCreate(items, result, player, ...) -- trying overwrite print('Huh?'); -- test not passed! the code does not work return old_RipClothing_OnCreate(items, result, player, ...) end
×
×
  • Create New...