never used
#1

Code:
if(dialogid == DIALOG_GIFTBOXOB)
	{
    	if(!response) return 1;
    	{
    		new Float: pos[3]; new zzgQuery[256] = EOS;
    		new sssstring[256];
			GetPlayerPos(playerid, pos[0], pos[1], pos[2]);

			GiftBoxInfo[playerid][pGiftBoxOn] = 1;
		    SCM(playerid, -1, "Giftbox activated");
		    
		    GiftBoxInfo[playerid][pGiftBoxPosX] = pos[0];
		    GiftBoxInfo[playerid][pGiftBoxPosY] = pos[1];
		    GiftBoxInfo[playerid][pGiftBoxPosZ] = pos[2];
		    GiftBoxInfo[playerid][pGiftboxModel] = CreateObject(strval(inputtext), GiftBoxInfo[playerid][pGiftBoxPosX], GiftBoxInfo[playerid][pGiftBoxPosY], GiftBoxInfo[playerid][pGiftBoxPosZ], 0.00000, 0.00000, 0.00000);
		 
			format(sssstring, sizeof(sssstring), "TEST\nBani castigati: $%s\nExperienta castigate: %s", 
			FormatNumber(GiftBoxInfo[playerid][pGiftBoxMoney]), FormatNumber(GiftBoxInfo[playerid][pGiftBoxEXP]));
			giftlabel = CreateDynamic3DTextLabel(string, 0xFFFFFFFF, GiftBoxInfo[playerid][pGiftBoxPosX], GiftBoxInfo[playerid][pGiftBoxPosY], GiftBoxInfo[playerid][pGiftBoxPosZ], 25, INVALID_PLAYER_ID, INVALID_VEHICLE_ID, 1, -1, -1, -1, 100.0);
			
	    	mysql_format(SQL, zzgQuery, sizeof(zzgQuery), "INSERT INTO giftboxd (`GiftBoxOn`, `GiftboxModel`, `GiftboxPosX`, `GiftboxPosY`, `GiftboxPosZ`) VALUES ('1','%d', '%f', '%f', '%f')",strval(inputtext), GiftBoxInfo[playerid][pGiftBoxPosX], GiftBoxInfo[playerid][pGiftBoxPosY], GiftBoxInfo[playerid][pGiftBoxPosZ]);
		    mysql_tquery(SQL, zzgQuery, "", "");
		}
	}
D:\server\gamemodes\ExtremeGame.pwn(4913 : warning 204: symbol is assigned a value that is never used: "giftlabel"

fixes?
Reply
#2

ok, i fixed this by adding a DestroyDynamic3DTextLabel(giftlabel)....

but, nothing shows on the giftbox
Reply
#3

Either add the
Quote:

DestroyDynamic3DTextLabel

In a place where you actually need to remove the text,
Or just remove the 'giftlabel = ..' part
So you are only left with:
Quote:

CreateDynamic3DTextLabel(string, ...

Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)