- Katılım
- 4 yıl 9 ay 2 gün
- Mesajlar
- 736
- Discord
- LquenS#5943
es_extendede bir bölüm eklemesini istiyorum fakat ne yaptıysam çalışmıyor şöyle göstereyim;
Bu eklenmiş hali,
Bu eklemeye çalıştığım;
Buda eklemeye çalıştığım kısım;
fakat eklemeye çalıştığım kısımı ekleyince eklerdeki gibi oluyor.
Kod:
if itemCount > 0 and sourceXPlayer.getMoney() >= itemCount then
sourceXPlayer.removeMoney(itemCount)
targetXPlayer.addMoney (itemCount)
MySQL.Async.execute('INSERT INTO transfer (Sender, Type, Amount, Reciever)VALUES (@Sender, @Type, @Amount, @Reciever) ',
{
['@Sender'] = sourceXPlayer.name,
['@Type'] = 'Cash',
['@Amount'] = itemCount,
['@Reciver'] = targetXPlayer.name
}
)
sourceXPlayer.showNotification(_U('gave_money', ESX.Math.GroupDigits(itemCount), targetXPlayer.name))
targetXPlayer.showNotification(_U('received_money', ESX.Math.GroupDigits(itemCount), sourceXPlayer.name))
else
sourceXPlayer.showNotification(_U('imp_invalid_amount'))
Bu eklenmiş hali,
Bu eklemeye çalıştığım;
Kod:
MySQL.Async.execute('INSERT INTO transfer (Sender, Type, Amount, Reciever)VALUES (@Sender, @Type, @Amount, @Reciever) ',
{
['@Sender'] = sourceXPlayer.name,
['@Type'] = 'Cash',
['@Amount'] = itemCount,
['@Reciver'] = targetXPlayer.name
}
)
Buda eklemeye çalıştığım kısım;
Kod:
if itemCount > 0 and sourceXPlayer.getMoney() >= itemCount then
sourceXPlayer.removeMoney(itemCount)
targetXPlayer.addMoney (itemCount)
sourceXPlayer.showNotification(_U('gave_money', ESX.Math.GroupDigits(itemCount), targetXPlayer.name))
targetXPlayer.showNotification(_U('received_money', ESX.Math.GroupDigits(itemCount), sourceXPlayer.name))
else
sourceXPlayer.showNotification(_U('imp_invalid_amount'))