Search Results
Quote: Originally Posted by Sunehildeep PHP код: enum fInfo {     FacName[50],     FacOwner[20],     FacLevels,     FacRanks,     FacSlots[10] //im not sureÂ...
136
Quote: Originally Posted by NealPeteros Alright, so, how do I convert the sscanf line to strcmp? Use zcmd its much better.
209
My title says every thing how to make an object which neither collide player nor other objects(No pickups).
46
Guys how can i make something like Text:myTd. Suppose I am creating new type of TextDraw having something different. So how can I make them with tag "PText:". [Edit] How can i make two stocks for it. ...
91
My title says every thing. How we can convert rgb to hex.Hex can be in string form.
138
Quote: Originally Posted by Dayrion I don't get the purpose of using tag even after read this, except to get warning or not. Can you explain ? ^^' There is stock for TextDraws "TextDraw...
174
Quote: Originally Posted by Speedpro edit I gave example not exactly doing that. What code i should put. if I am creating List:
174
Quote: Originally Posted by Vince It's not a data type, it's a tag. And you can literally just type it in front. So how i can create that in my include. Suppose i am creating List: Give...
174
Like Text:myTd, PlayerText:myPTd. How i can make something like Bar:
174
PHP код: new str[128] = "2.00000|55.33333|0|55|My Test"; new posX[10], posY[10], font[10], color[10], text[128]; /*Get first part(2.00000) to posX, second(55.33333) to posY, th...
100
Quote: Originally Posted by Maheerali This is not working. Now sending clientmessage. Sorry i got wrong file name
118
Quote: Originally Posted by iLearner Could you explain the problem? This is not working. Now sending clientmessage.
118
PHP код: stock LoadProject(pjname[]) {     new File:handle = fopen(pjname,io_read);     new td_Info[128];     if(handle)     {         while(fread(handle,td_Info)) ...
118
Bro i got simple one for you ResetPlayerWeapons(playerid); And to change some weapons. SetPlayerAmmo(playerid, 23, 0);
96
Quote: Originally Posted by Kaliber Like this: PHP код: new str[128]; new str2[20] ="Mytd"; format(str,128,"%s",str2); TextDrawCreate(240.00,120.00, str);  Bro I am n...
97
PHP код: new ammo[MAX_PLAYERS]; cmd:give(playerid,params[]) {      ammo[playerid] += 200;      GivePlayerWeapon(playerid,24,ammo[playerid]); } cmd:take(playerid,params[]) {    Â...
96
Quote: Originally Posted by Shinja TextDrawSetString how to have string token in string?
97
you need to create enum. Example: PHP код: enum E_MY_ARRAY {     E_MY_ARRAY_MONEY,     E_MY_ARRAY_AMMO,     E_MY_ARRAY_GUN }   new     gPlayerData[MAX_PLAYERS][E_MY_ARRAY];  ...
67