From 170f680ef8813f4e2f7da35dd30bc06b8795747a Mon Sep 17 00:00:00 2001 From: Jim Shield Date: Wed, 15 Jun 2022 20:24:38 +0100 Subject: [PATCH] Update/Fix gks install support info --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 1a5b9d7..9a936d9 100644 --- a/README.md +++ b/README.md @@ -64,8 +64,7 @@ Go to gks-phone > server > serverapi.lua - Add these lines: ```lua - local data = { society = id.society, amount = amount } - TriggerServerEvent('jim-payments:Tickets:Give', data) +TriggerEvent('jim-payments:Tickets:Give', { senderCitizenId = id.sendercitizenid, society = id.society, amount = amount }) ``` --------------