Search Results
Haha, This is a little video I made for battlefield; [ame]http://www.youtube.com/watch?v=j8JHzPO7bAY[/ame] Like/Comment/Subscribe!
55
You should change AddStaticVehicle to CreateVehicle, because then you can destroy it.
72
Haha, but what features would you call unique?
120
Its proberbly something to do with your stock (HousePath()
147
I understand your opinion, but it isn't too late at all. I've created my own community previously, which is pretty much full on a daily basis now. I quit that community due to multiple reasons, but ...
120
Hi, I'm a scripter for a community called Skyline Gaming, and the script is based a roleplay/freeroam genre. I was wondering what type of things/features you would like to see in the script? Its cu...
120
You can add a id parametre into your command, so it sets those houses to that id. Take a look: pawn Код: CMD:createhouse(playerid, params[]){    new HousePrice, houseid;    if(!IsPlayerAdmin...
147
I beleive the first statement, just because surelly it would be quicker for the computer to process if(a && b) instead of two different if statements? +rep if I helped.
120
Try this: http://pastebin.com/urrsyvGq Rep if I helped.
113
pawn Код: public OnPlayerText(playerid, text[]){    new gName[24], gMessage[250];    GetPlayerName(playerid, gName, sizeof(gName));    format(gMessage, sizeof(gMessage), "%s says: %s", gName...
213
The query I made opens up the table, and it sets the admin row to what ever level they chose at the players name.
199
Hi, I've receantly noticed alot of people asking how they can set somebody admin level through dini, yini, and mysql. Im going to show you how you can do that by using MYSQL and SSCANF and ZCMD. Le...
199
Thanks for that, both repped.
119
Try and remove the mysql_free_result above - haus[i][X] = mysql_GetFloat("haus", "X", "ID", i); Rep if I helped.
77
Hi, It currently says I've got 2 reputation, but on my account user cp it says I've got 5 people who have get me reputation. Is this a bug?
119
You should set the colour of the name when they connect/spawn. pawn Код: public OnPlayerConnect(playerid){       SetPlayerColor(playerid, 0xFF0000FF);       return 1;} Give reputation if...
76
You could just the animation: pawn Код: ApplyAnimation(iD, "ped", "cower", 3.0, 1, 0, 0, 0, 0); I use that and its quite effective.
133
Try and change: pawn Код: Public LoadHaus() to: pawn Код: stock LoadHaus() I dont know if that would fix the error or not, but its worth a try.
77
Try this: pawn Code: COMMAND:setlevel(playerid, params[]){    new iD, Level, gQuery[250], pName[24], gMessage[250], gVictim[24];    if(IsPlayerAdmin(playerid) == 1)    {        if(sscanf(p...
85
Try this: pawn Код: dcmd_kick(playerid, params[]){    if(AccountInfo[playerid][AdminLevel] <=1)    {        new pName[24], pVictim[24], gMessage[250], iD, gReason[250];        if(s...
166