You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello im facing this issue right now basically I have this simple code to repro this problem, the pickup won't update after changing it like nothing's happen, I'm using the latest streamer version which is v2.9.6 and runs it on omp server
``static DynamicPickup:pickupid;
@cmd() createpickup(playerid, params[], help)
{
new Float:x, Float:y, Float:z;
GetPlayerPos(playerid, x, y, z);
pickupid = CreateDynamicPickup(1273, 23, x, y, z);
return COMMAND_OK;
Only on the latest version i have the same problem (OMP), the pickup is updated only if you exit and re-enter its stream, in some cases if you create it next to a player, he does not see it and has to enter/exit from its stream.
Hello im facing this issue right now basically I have this simple code to repro this problem, the pickup won't update after changing it like nothing's happen, I'm using the latest streamer version which is v2.9.6 and runs it on omp server
``static DynamicPickup:pickupid;
@cmd() createpickup(playerid, params[], help)
{
new Float:x, Float:y, Float:z;
GetPlayerPos(playerid, x, y, z);
}
@cmd() pickupchange(playerid, params[], help)
{
Streamer_SetIntData(STREAMER_TYPE_PICKUP, pickupid, E_STREAMER_MODEL_ID, 19522);
return COMMAND_OK;
}``
The text was updated successfully, but these errors were encountered: