mirror of
https://github.com/EQEmu/Server.git
synced 2026-06-29 18:37:16 +00:00
Updated Perl Client AddAlternateCurrencyValue (markdown)
@@ -2,12 +2,12 @@ adds a client alternate currency value.
|
|||||||
### Arguments
|
### Arguments
|
||||||
**Name**|**Type**|**Description**
|
**Name**|**Type**|**Description**
|
||||||
:---|:---|:---
|
:---|:---|:---
|
||||||
currency_id|uint32|
|
uint32 currency_id||int32 amount||
|
||||||
amount|int32|
|
|
||||||
### Example
|
### Example
|
||||||
|
|
||||||
```perl
|
```perl
|
||||||
my currency_id = 1;
|
my $uint32 currency_id = 1;
|
||||||
my amount = 1;
|
my $int32 amount = 1;
|
||||||
quest::say($client->AddAlternateCurrencyValue(currency_id, amount));
|
|
||||||
|
$client->AddAlternateCurrencyValue($uint32 currency_id, $int32 amount); # Returns void
|
||||||
```
|
```
|
||||||
Reference in New Issue
Block a user