Search Results
Quote: Originally Posted by Hoborific 0.3d, what. ignore this guy, run the server again with the plugin/include included, when it crashes, copy paste the errors from the server log here an...
208
Okay..Try the following steps.I'm sure it'll solve your problem. 1. Download this version of sscanf2 http://dl.dropbox.com/u/21683085/sscanf-0.3d.rar and put the files in their place. (Plugin goes in...
208
Quote: Originally Posted by [IKS]Niko_Hs™ Search "GivePlayerMoney(playerid,-100);" in your Gamemode and FilterScripts. As i explained above, i dont have it in my GM script and i'm not...
75
I'm making a TDM. I noticed that when player dies, $100 are taken out automatically from player's money even though i dont have this kind of money decrement code in my script. I wanna know is it defau...
75
Use 'Bitwise' operator for Checking KeyPress, not '=='. Read: https://sampwiki.blast.hk/wiki/OnPlayerKeyStateChange and add 'return 1;' at end of every 'if' or 'else if' block.
80
Yea..i tried it again and it works. OnPlayerDisconnect is called when player is timedout. Thanks everyone who helped.
117
I'm making a TDM script with MySql. I have Money as player's stat and its stored in MySql table. I've scripted a Stats saving function which is called under OnPlayerDisconnect. Its alright when player...
117
Alright, i placed it in separate function and it worked. Thanks for your help guys. I really appreciate it.
134
Quote: Originally Posted by Rudy_ You can't show them all at once, OnDialogResponse and when player login's then show him the Team Dialog. Thats What i'm trying to do. Player Logs in a...
134
I have 3 dialogs under OnPlayerConnect. 2 for Logging in/Registration and 1 for Choosing Team. Код: public OnPlayerConnect(playerid) { new query[200],pName[30]; GetPlayerName(playerid,pN...
134
i dont get it. Can anyone explain in detail? Quote: Request's must be placed in the right thread which is located at top of this board. I'm not asking anyone to write the whole s...
77
I'm scripting a TDM from scratch. I want that when players connects, a dialog box appears with a list of gangs. When players selects, it takes him to class selection where only the skins of that gang ...
77
Really Userful Tutorial for Beginner Scripters. Thanks for this piece of Information! +REP!
3,192
Quote: Originally Posted by BaubaS oh, really debug.txt is clear? Yes. No error in debug.txt
147
Quote: Originally Posted by BaubaS That's because your query string lenght is too small.. Make it begger Well you are right. Size of Query String was 50 and string was like 70+. Anyway,...
147
Quote: Originally Posted by BaubaS INSERT INTO `users` (Username, Password) VALUES ('%s', '%s')", pName, pass); I still get this :/ EDIT: I forgot to shut down the server. Anyway, now ...
147
Quote: Originally Posted by Ballu Miaa Try this! pawn Код: new query[50],pass[50],pName[50];GetPlayerName(playerid,pName,30);mysql_real_escape_string(inputtext,pass);format(query,sizeo...
147
I'm new to BlueG's mysql and i'm using the R5 version of it. I created an insert query to input some things but it wont work. I dont think theres any error. When i use "SET" instead of "VALUES" ,like...
147
Dont include return statement and else part. thats it
103