Search Results
Quote: Originally Posted by flybox Links are dead!!! Please update i need those files Links work great! What doesn't work?
2,922
The issue was another pinglimit dmodule which was running at the same time. I found it by searching the entire source code for GetPlayerPing . Thanks for the hint Have fun coding, Draco
73
Hi there, it's been a while since I posted a question . I split up my server into two servers: one with pinglimit < 200 (I have a custom script with GetPlayerPing for that) and another one, which...
73
Quote: Originally Posted by MafiaGuy™ offtopic: how do you make your code like pawn style. "new" is blue..etc. PS: You can always quote a message and see how he made it . Have fun co...
122
Quote: Originally Posted by lolumadd This isn't working for me. I have everything up correctly and everything running right. The map on my browser is blank, while it should have some icons...
2,082
Quote: Originally Posted by [DJ [SF]Зурэ Яииr ∞™ ] ... also i tried pawn Код: if(strcmp(IP,pIp,false)) it didnt help, the pawn Код: if(IP == pIp) seemed to give me errors...
3,515
Quote: Originally Posted by [DJ [SF]Зурэ Яииr ∞™ ] for some reason i get a error on my auto-login function, error is pawn Код: C:\Users\Windows Vista\Desktop\sa-mpr7\gamemode...
3,515
Try this: http://forum.sa-mp.com/index.php?top...1840#msg511840 Have fun coding, Draco
3,515
pawn Код: HPW = dini_Get(file, "hashPW"); should be: pawn Код: HPW = dini_Int(file, "hashPW"); because it's a number and not a string. If you want to read a string with dini one day, you ma...
89
Quote: Originally Posted by Shinzei_Banzai Well. What about the /enter code. It's disabled somehow..? This: if (strcmp("/enter", cmdtext, true, 10) == 0) Tests the first 10 characters, ...
209
Fix your indention style then. Code in the same block should not change indention, thats what the warning tells you. Try http://dracoblue.net/tidy/pawn/ to properly format this part of your code. - ...
209
You want to set a string. This does not work with assignment, try format-function instead. format(pLicensesInfo[playerid], sizeof(pLicensesInfo[playerid]), "%s", string); Have fun coding, Draco
159
This code looks fine. Could you send me a link to your map where this happens? - Draco
2,082
Quote: Originally Posted by papagei9 Ok thx! Now another problem : I add in OnGameModeInit 30 MapIcons to Dmap. The Icons are visible on the map. If i connect with the playerid 0 a new...
2,082
Try this instead: Code: format(skincar,255,"<img src='https://sampwiki.blast.hk/w/images/a/ab/Skin_105.png'> <img src='https://sampwiki.blast.hk/w/images/f/fe/Vehicle_458.jpg'>"); - Draco
2,082
Quote: Originally Posted by papagei9 ok. in the dmap_feed.json it looks so: Code: {"items":{"i1":{"icon":31,"id":1,"name":"Haus frei","pos":{"x":2499,"y":-1646},"text":"Haus mit 543333334...
2,082
Quote: Originally Posted by DracoBlue I tested (calling 1000000 times) the implementations above, without print-stuff (this would make lag, which isn't called by the function itself!) and ...
116
Quote: Originally Posted by ronyx69 Thanks, yezizhu. It's working. DracoBlue: The storing is because i will make an auto-login. This does not fix the issue I posted. Only an online pla...
185
Quote: Originally Posted by paytas Then it's dini_Int. But i encourage you to not use dini, it's slow as hell. Depends on the usage. You should of course not read/write data all the ti...
185
This: new File: reg; reg = fopen(string, io_append); Should be just: file = fopen(string, io_append); - Draco
104