07.01.2012, 17:02
I have only recently started using Icognito's Streamer for objects.
I'm not the best with plugins, and parameters, so i have a few questions i hope will be simple for you to answer.
- Objects load when i'm fairly close to them, and all i have on my CreateDynamicObject:
- I used convertFFS for the code, from a CreateObject.
- Now, i looked at Icongito's thread, and this is the createdynamicobject native:
- I sort of understand it, i have everything which is bold, but not the rest.
What would happen, if i were to change it to this: (My CreateDynamicObject, not the native!)
I want to ignore EVERYTHING to do wit hthe playerid, worldid, interiorid. I'm not sure how but i'm taking a guess, is it -1 to IGNORE it? As i want to increase the distance only.
Thanks.
Rep will be given.
I'm not the best with plugins, and parameters, so i have a few questions i hope will be simple for you to answer.
- Objects load when i'm fairly close to them, and all i have on my CreateDynamicObject:
Код:
CreateDynamicObject(5,-698.97000000,1278.21000000,0.51000000,0.00000000,0.00000000,262.86000000); //
- Now, i looked at Icongito's thread, and this is the createdynamicobject native:
Код:
native CreateDynamicObject(modelid, Float:x, Float:y, Float:z, Float:rx, Float:ry, Float:rz, worldid = -1, interiorid = -1, playerid = -1, Float:distance = 200.0);
What would happen, if i were to change it to this: (My CreateDynamicObject, not the native!)
Код:
CreateDynamicObject(5,-698.97000000,1278.21000000,0.51000000,0.00000000,0.00000000,262.86000000, -1, -1, -1, 500.0);
Thanks.
Rep will be given.