Search Results
Just to provide a bit more information on the hosting aspect of this server. The files are all hosted locally on the server themselves no redirects. We also seem to have an issue where this sort of de...
351
I believe you should be able to, don't see why you wouldn't be able to. Try it and see for yourself.
98
Make sure you are defining it with the exact same spelling as the .inc file in your includes folder, usually located within your pawno folder.
250
I'm not sure how you'd script this.
71
I don't know exactly how your code is structured, but I'll give you an example using an enumerator. Lets say your objects are stored in the enumerator landObjData and it is structured as follows: PH...
170
I haven't seen the way limitless works, but I assume its through one of these three functions and following callbacks: https://sampwiki.blast.hk/wiki/EditObject or https://sampwiki.blast.hk/wiki/Edit...
170
I'm not quite sure I understand what you're trying to do, but why not use strcmp? PHP код: CMD:test_id(playerid, params[])  {      new targetid[4];     if(sscanf(params,"s[4]", ta...
274
Can you show me the structure of your players table? I don't quite understand the language of what you're pulling.
150
Change your CloseGate function to this: PHP код: forward CloseGate(gateid, linkid, Float:fX, Float:fY, Float:fZ, Float:speed, Float:fRotX, Float:fRotY, Float:fRotZ); public CloseGate...
166
We're having this issue too, except we don't have connection cookie logging enabled. It just takes the server forever to ping, as well as connect. We started out by dropping those same ranges and it s...
14,613
SetPlayerArmour(playerid,100); missing semicolon. Problem solved.
95
if(sscanf(params, "s[200]d",etkName, katilimsurebelirle))
92
You are doing integer division which no programming language likes, Try this? new Float: T1KDR, Float: T2KDR; T2KDR = (float(dini_Int(warfile, "faction2kills"))/(float(dini_Int(warfile, "faction2dea...
91
Its only going to be called if you get into a truck that already has a trailer attached.
115
from the code as I see it format(string, sizeof(string), "users/%s.ini", PlayerName(playerid)); is useless in OnPlayerLogin
131
You are checking for the model here if(vID == 403 || 514 || 515) Not for individual vehicle ID's Add in new vModel = GetVehicleModel(vID); and check if(vModel == 403 || 514 || 515)
115
I'm not 100% sure as I've never used DOF2 but from a quick ****** it appears you would need to use something like DOF2_LoadFile
131
I'm assuming it would be an issue here if(DOF2_GetInt(string, "Convert") != 5) return Kick(playerid); seeing as how its the only other place you have Kick. It looks like you need to re-open the fil...
131