Can you try that an tell if that right ?
(I can not check i do not have working primeshop working for Gracia Final.)
Go in "Lin2World" then in "user_point"
Search for your desired character by ID
I row point type search id 0 of your desired character (I suggest that for test you use your builder account.)
And in count if that 0 change it to something else so you can see that change in game.
If that does not change it be sure to reload character.
If that still not work try to add different Point type ID (ID 6 = Pc cafe point), all other I have no idea yet sorry.)
It does Not require server reboot when you give point.
If after sometime you still have not found it I suggest to contact Advext and ask them some documentation after all you should have payed for their files :)
When I read their SQL it seem point id is 0 check bellow after "@account_id" :)
CREATE PROCEDURE lin_AddPointsJob
(
@account_id INT,
@points INT
)
AS
SET NOCOUNT ON;
INSERT INTO dbo.user_pending_job (account_id, job_type, job_param, job_create_time) VALUES (@account_id, 0, @points, GETDATE())
go