Search Results
http://pastebin.com/dWQtnmYZ
1,430
I dont see variable $Name defined anywhere. I guess you might use $myusername instad of $Name in that query.
94
I don't know what you want to do with that id, but $_GET['id'] represents the id thats in the link. Where do you want to put it?
136
There must be & instead of ; if you want seperate GET variables. ?action=profile&id=72 $_GET['action'] will be profile and $_GET['id'] will be 72. Hope i understood you correctly.
136
Well, if it is going to be same like in-game editor, then i will use this. I'm too lazy to go in-game ;|
179
You can try UDK. http://www.unrealengine.com/ It is free and very powerful. There is a something like visual scripting and other awesome stuff. Definetly recommending.
106
http://gtapt.net/forum/index.php?topic=5747.0
340
0xD478DBAA Try this one. This should be same as your picture have.
188
Cool! Where do you get ideas for all your scripts so fast?
1,163
I thought that skaters always were wearing skinny jeans.
514
It's supporting arrow keys(GetPlayerKeys)?
596
I think i have already seen something like this.
214
pawn Код: if(strcmp(cmd, "/mats", true) == 0)    {    new mats = PlayerInfo[playerid][pMats];    SendClientMessage(playerid, COLOR_WHITE, "Amount of Materials....");        format(string...
88
2 people survived, but one of them died at hospital.
151
Yeah, it's sad. Our Latvian hockey player Karlis Skrastins died too. My friends had a big emotional shock. All team died in a plane crash... Only one person is still alive, i guess it is flight attend...
151
/teleport me faraway /givecash me infinity All i would need.
113
pawn Код: stock split(const strsrc[], strdest[][], delimiter){    new i, li;    new aNum;    new len;    while(i <= strlen(strsrc))    {        if(strsrc[i] == delimiter || i == s...
104
pawn Код: new Dates[3][11];new DateString[11]="04/02/1997";split(DateString,Dates,'/');new day = strval(Dates[0]);new month = strval(Dates[1]);new year = strval(Dates[2]);if(day<1||day>31) S...
104