23.04.2014, 09:18
(
Последний раз редактировалось VinPure; 23.04.2014 в 11:27.
)
This is a simple system that allows creating items, pick it, and drop it
Features:
+ CreateItem
+ PickupItem
+ DropItem
======================
Image:
Pastebin:http://pastebin.com/dXJGjcKc
EX:
I have some object
And I Have Item Create Form Object
However You Can Create Random Item
After you have created your item, you need to
Done
//CREDITS:
Vinpure script.
ZeeX for ZCMD
Features:
+ CreateItem
+ PickupItem
+ DropItem
======================
Image:
Pastebin:http://pastebin.com/dXJGjcKc
EX:
I have some object
PHP код:
CreateObject(1650, 590.32098, 1231.55383, 11.02776, 0.00000, 0.00000, 26.40000);
CreateObject(2356, 1679.90417, -961.73419, 63.79266, 0.00000, 0.00000, 0.00000);
PHP код:
CreateItem(1650,590.32098,1231.55383,11.02776,0.00000, 0.00000, 26.40000,0,0);
CreateItem(2356, 1679.90417, -961.73419, 63.79266, 0.00000, 0.00000, 0.00000,0,0);
PHP код:
new ItemRandom[2] = {
1650,2356};
CreateItem(ItemRandom[random(2)],590.32098,1231.55383,11.02776,0.00000, 0.00000, 26.40000,0,0);
CreateItem(ItemRandom[random(2)], 1679.90417, -961.73419, 63.79266, 0.00000, 0.00000, 0.00000,0,0);
PHP код:
if(ItemInfo[i][ItemModel] == 1650)
{
Delete3DTextLabel(Label[i]);
DestroyDynamicObject(DropObject[i]);
SendClientMessage(playerid,-1,"1650");
}
if(ItemInfo[i][ItemModel] == 2356)
{
Delete3DTextLabel(Label[i]);
DestroyDynamicObject(DropObject[i]);
SendClientMessage(playerid,-1,"2356");
}
//CREDITS:
Vinpure script.
ZeeX for ZCMD