lowerDeposit()
From Hack Wars Wiki
| Function information for lowerDeposit() | |
| Function | lowerDeposit(string ip, float amount) |
| API | Banking |
| Cost | $10 |
| Level | 1 |
| CPU Usage | 1 |
| Description | Deposits the specified amount in the form of a float into the bank of the player represented by the provided IP address in the form of a string. lowerDeposit takes the highest percentage in service charges and gives the least experience. |
Bank Example
lowerDeposit(getSourceIP(), getAmount()); |
This will deposit the amount specified in the menu to the person who uses it.
Malicious Bank Example
lowerDeposit(getMaliciousIP(), getAmount()); |
This will deposit the amount specific in the menu to the malicious IP specified.
