Search Results
I haven't seen this Exception anywhere else. I've tried reinstalling many times (4 or 5 at this point), running both samp and gta_sa in compatability modes 98/ME & 7, running both as Administrator...
67
Setup a timer on repeat. gettime each second, check for minute == 30 || minute == 0. Give player payday Код: OnGameModeInit() { SetTimer("PaydayTimer", 1000, true); } PaydayTimer() { new...
77
http://dev.prineside.com/en/gtasa_sa...search/?q=drug EDIT: What do you mean it's "not 1575"?
70
Do you have an example of what you want? What you're saying doesn't really make sense to me.
108
Try without specifying a decimal amount. I think I had a similar issue and this resolved it
134
Show us the function "GAdmin_VerifyColumn"
79
PHP код: new bool:male = false; new gender[11]; gender = (male ? ("Male") : ("Female")); printf("%s\n", gender); result: "Femal" (NOT a typo)  I've tried with multiple ch...
54,973
I think the animation you're after is "FALL_collapse" in the "PED" Library
159
That returns the nearest whole number. Код: public Align(Float:angle) { new Float:a = angle / 45; floatround(a); return a * 45; } EDIT: It actually just prints the number given in the paramet...
158
I need an equation which returns the nearest value to a specified multiple. I've tried searching around the web but could only find either Rounding up or Down. I've been trying to find a solution to t...
158
Code: new gender[16]; new IsPlayerMale = (IsPlayerMale(playerid)) ? format(gender, sizeof(gender), "Male") : format(gender, sizeof(gender), "Female"); // 429 Code: (429) : error 012: invalid functio...
105
Thanks man.. I've been editing this code for 2 days. OT: How many times did you edit that post? XD
95