mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-07-07 13:41:18 -07:00
First implementation of user scripts - very experimental - YMMV
This commit is contained in:
parent
ba8b5c173b
commit
806dc07542
6 changed files with 337 additions and 4 deletions
14
client/scripts/helloworld.lua
Normal file
14
client/scripts/helloworld.lua
Normal file
|
@ -0,0 +1,14 @@
|
|||
print("Helleo world!");
|
||||
|
||||
print("hf:", hf);
|
||||
|
||||
print("hf.mf:",hf.mf);
|
||||
print("and now... ");
|
||||
print("hf.mf.mifare",hf.mf.mifare);
|
||||
|
||||
hf.mf.mifare("");
|
||||
|
||||
|
||||
function foo()
|
||||
print("Hi I am the foo function!");
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue