Advertisement
Guest User

Untitled

a guest
Dec 3rd, 2016
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. orig_giveItem <- giveItem; // Zapisujemy sobie adres oryginalnej funkcji giveItem
  2.  
  3. function giveItem(pid, instance, amount) // Nadpisujemy oryginalną funkcję
  4. {
  5.     // Nasz dodaktowy kod tu
  6.     orig_giveItem(pid, instance, amount);
  7.     // Albo tu
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement