Search Results
without the code from them lines no one will be able to help you
182
no it wont
you could use switch instead
pawn Код:
switch (skinVal ){Â Â case 181,1,157,196,264,239,212,100,152,178,237,238,246, 256,257,64,63,87,15,134,213,198,259,241,32,100,142 ,60,239,132...
167
pawn Код:
for(new i = 0;i<6;i++){Â TextDrawShowForPlayer(playerid, Spawn[i]);}
189
first off please dont bump before 24 hours, your post will be answered when someone sees it and has an answer for you.
second the function in question is
CMD:moneybag
not
CMD:moneyrush
so pos...
242
its common practice to run "clean up" code when exiting any app.
its simple if you dont want to destroy them then dont...
if the abstract machine("server") gets shut down surly everything will be clo...
643
did you look at the attachments.pwn filterscript that comes in the server package?
everything you need is in there.
141
sqlite is native to samp.
heres what mine look like
http://pastebin.com/sidc9w16
its from 2012 but it will give you an idea
mine was not really a map editor,
youd have to add code to make projects
g...
290
Quote:
Originally Posted by xXmAn40100Xx
Hi, thanks for your answer. I'm testing it, may I ask you, what does "EOS" means?
End Of String
EOS = \0
346
personally i would use sqlite or mysql
but to read a file you use fread
https://sampwiki.blast.hk/wiki/Fread
290
pawn Код:
// example  SaveToFile("objs.txt","CreateObject(param, param, param, param...);");stock SaveToFile(path[],text[]){  new File:handle = fopen(path, io_append);  if(handle)  {Â...
290
pawn Код:
new Float:aPlayerPunchHealth[MAX_PLAYERS];public OnPlayerSpawn(playerid){Â Â GetPlayerHealth(playerid,aPlayerPunchHealth[playerid]);Â Â return 1;}public OnPlayerTakeDamage(playerid, ...
236
i would use
https://sampwiki.blast.hk/wiki/OnPlayerTakeDamage
even though both are called after damage has been done
you could use https://sampwiki.blast.hk/wiki/SetPlayerHealth
to restore the old he...
236
best bet is not to use INI for registration and user system
"The INI file format is an informal standard for configuration files for some platforms or software"
my advice is to switch to sqlite or mys...
249
what do you want the stock todo?
a stock is just a function/ or var that may or may-not be used at run-time.
the compiler checks at compile time for its usage and if it is not used it is removed fro...
192
not really but that is another approach provided you allow other players into your house.
351
set a different virtual world for each player when entering an interior.
when you exit you should set it back tot he same virtual world so they can see each other on the streets
351
I never knew about this method,
I have converted to using this and it is the simplest of the methods.
I will be upgrading my als generator soon to use this method
thx
2,758
yes I know all about linux and how easy it can be to install,
and that android uses linux kernel . lol
but not doing that right now that is why i wanted to see if anyone is hosting a live copy
thank...
4,652
Quote:
Originally Posted by SickAttack
Using the keyword "stock" or not doesn't make a difference (as for performance), so why even bother?
That's not really the reason why people use it....
905
you have an extra comma at the end of the array
"Cuneo"}, //Heli
pawn Code:
"Cuneo"},//Heli
remove the comma and try to compile again
EDIT:
sorry i misread your post
the header should look som...
239