[Server] Problem with OnPlayerEditDynamicObject - Printable Version + open.mp forum (https://forum.open.mp) -- Forum: SA-MP (https://forum.open.mp/forumdisplay.php?fid=3) --- Forum: Support (https://forum.open.mp/forumdisplay.php?fid=12) --- Thread: [Server] Problem with OnPlayerEditDynamicObject (/showthread.php?tid=1226) |
Problem with OnPlayerEditDynamicObject - morem - 2020-10-10 Hey, It does not call back anything. Code: public OnPlayerEditDynamicObject(playerid, objectid, response, Float:x, Float:y, Float:z, Float:rx, Float:ry, Float:rz) After click on the save or cancel button, nothing happens. Version :?*** Streamer Plugin v2.9.4 by Incognito loaded *** Please help me about this ... RE: Problem with OnPlayerEditDynamicObject - BoNNe - 2020-10-10 Salut, make sure you do everything right. I will leave you an example below. Code: new test_object[MAX_PLAYERS]; //a global variable RE: Problem with OnPlayerEditDynamicObject - Expert* - 2020-10-15 Try to disable filterscripts, it might be called in FS first and one of em is blocking it. RE: Problem with OnPlayerEditDynamicObject - morem - 2020-10-16 (2020-10-10, 06:10 PM)BoNNe Wrote: Salut, make sure you do everything right. I will leave you an example below. I try it but not working ... (2020-10-15, 01:15 PM)Expert* Wrote: Try to disable filterscripts, it might be called in FS first and one of em is blocking it. My?OnPlayerEditDynamicObject is in filterscript not in gamemode RE: Problem with OnPlayerEditDynamicObject - morem - 2020-10-16 Problem fixed. I tried put my filterscript on first in server.cfg filterscripts. and change OnPlayerEditDynamicObject in my gamemode to return 0. |