Burgershot
  • Home
  • Members
  • Team
  • Help
  • Search
  • Register
  • Login
  • Home
  • Members
  • Help
  • Search
Burgershot Search Results

Pages (16): « Previous 1 2 3 4 5 … 16 Next »
 
Search Results
Post Author Forum Replies Views Posted [asc]
  Thread: YSI Daily Tips
Post: RE: YSI Daily Tips

2021-05-20: Yet Another Call Improvement Three days ago introduced using function Name, and two days ago introduced [email protected] These are both methods use to specify what parameters a function expec...
Y_Less Pawn Scripting 41 7,804 2021-05-20, 10:05 AM
  Thread: HELP! How to get better recommend than `udb_hash()` and bcrypt system?
Post: RE: HELP! How to get better recommend than `udb_ha...

BCrypt is fine. Not how you're using it, but done correctly it is. udb_hash is just not a password system. I'm not even going to explain why - NEVER EVER use it.
Y_Less Pawn Scripting 1 451 2021-05-19, 11:42 PM
  Thread: YSI Daily Tips
Post: RE: YSI Daily Tips

2021-05-19: Initialisation Order I’m somewhat loathe to document this, as I know someone will abuse it, but this is the complete order of initialisation callbacks in YSI.  Unfortunately, over the y...
Y_Less Pawn Scripting 41 7,804 2021-05-19, 11:27 AM
  Thread: YSI Daily Tips
Post: RE: YSI Daily Tips

2021-05-18: [email protected] Technically this is a fact about amx-assembly, but it directly affects using YSI. You saw in the previous tip how using using callback and using function take the parameter spe...
Y_Less Pawn Scripting 41 7,804 2021-05-19, 11:26 AM
  Thread: YSI Daily Tips
Post: RE: YSI Daily Tips

2021-05-17: Passing Normal Functions As Callbacks Functions that most people think take inline functions can also take public functions with using callback (or using public): Quote: -- public...
Y_Less Pawn Scripting 41 7,804 2021-05-19, 11:25 AM
  Thread: [Solved] Fire glitch/bug
Post: RE: [Solved] ...

No. If you have a problem and solve it post the answer so other people can learn as well. The forums are for everyone, hiding help from other people after you've received so much help is extremely r...
Y_Less Support 4 1,117 2021-05-18, 12:08 PM
  Thread: Skins gtaIII and gtaVC for samp03dl
Post: RE: Skins gtaIII and gtaVC for samp03dl

10 years without a backup?
Y_Less Questions and Suggestions 2 953 2021-05-18, 12:05 PM
  Thread: 3d iterator array
Post: RE: 3d iterator array

1. Don't use functions with "Internal" in their name - they are internal to the library. 2. I've never tested with 3d arrays, pawn doesn't really do 3d arrays and I'd be amazed if it worked at all....
Y_Less Pawn Scripting 1 495 2021-05-18, 12:05 PM
  Thread: [Solved] Get Difference Between Time Period
Post: RE: [Solved] Get Difference Between Time Period

Use unix timestamps. If you ever have a question about time, they are the answer.
Y_Less Pawn Scripting 3 643 2021-05-18, 12:03 PM
  Thread: [SOLVED] [debug] Run time error 4: "Array index out of bounds"
Post: RE: HELP! [debug] Run time error 4: "Array index o...

You used `>` instead of `>=` to check the slot upper-bounds. You also use a define for the upper bound, which is good, then hard-coded the value in the string, which defeats the object.
Y_Less Pawn Scripting 4 1,043 2021-05-17, 08:51 AM
  Thread: [SOLVED] How to Use Pragma ? From #Pragma tabsize 0
Post: RE: [SOLVED] How to Use Pragma ? From #Pragma tabs...

Pinch Wrote: (2021-05-16, 09:41 AM) -- Y_Less Wrote: (2021-05-15, 08:24 PM) -- How can a regex know which parameter should be `const` and which shouldn't? -- In most cases (at least for me) it did t...
Y_Less Pawn Scripting 15 2,659 2021-05-17, 08:50 AM
  Thread: YSI Daily Tips
Post: RE: YSI Daily Tips

2021-05-16: CUSTOM_TAG_TYPES An earlier tip mentioned GLOBAL_TAG_TYPES, a list of tags that all YSI functions will accept.  You can extend this list with your own tags by defining CUSTOM_TAG_TYPES....
Y_Less Pawn Scripting 41 7,804 2021-05-16, 07:49 AM
  Thread: YSI Daily Tips
Post: RE: YSI Daily Tips

2021-05-15: y_remote This very simple library just wraps CallRemoteFunction, to generate all the specifiers for you and check that the parameters are correct at compile-time.  This code compiles bu...
Y_Less Pawn Scripting 41 7,804 2021-05-16, 07:41 AM
  Thread: [SOLVED] How to Use Pragma ? From #Pragma tabsize 0
Post: RE: [SOLVED] How to Use Pragma ? From #Pragma tabs...

How can a regex know which parameter should be `const` and which shouldn't?
Y_Less Pawn Scripting 15 2,659 2021-05-15, 08:24 PM
  Thread: [SOLVED] How to Use Pragma ? From #Pragma tabsize 0
Post: RE: [SOLVED] How to Use Pragma ? From #Pragma tabs...

That's probably because you're using the old includes as well. Get the updated ones here: https://github.com/pawn-lang/pawn-stdlib https://github.com/pawn-lang/samp-stdlib
Y_Less Pawn Scripting 15 2,659 2021-05-15, 02:02 PM
  Thread: [SOLVED] How fix warning 217: loose indentation without Pragma Syntax?
Post: RE: Help! How fix warning 217: loose indentation w...

https://en.wikipedia.org/wiki/Indentation_style#Allman_style
Y_Less Pawn Scripting 2 691 2021-05-15, 02:00 PM
  Thread: how much does a gm roleplay cost?
Post: RE: how much does a gm roleplay cost?

If you want an idea. Just think about how much someone at McDonalds makes per hour. Then think that programmers get paid 2-10 times as much. Then you need to know that these modes can take hundreds...
Y_Less General Discussions 3 791 2021-05-15, 10:06 AM
  Thread: Basic SA-MP & Pawn Guide
Post: RE: Basic SA-MP & Pawn Guide

No. Parentheses are anything that enclose additional text. For example: Quote: -- James, who just woke up, went to the shop. -- "who just woke up" is additional information, and is enclosed by ...
Y_Less Tutorials 8 32,459 2021-05-15, 10:03 AM
  Thread: Help! How newbie fix sscanf warning: No default value found. Have System solution ?
Post: RE: Help! How newbie fix sscanf warning: No defaul...

https://github.com/Y-Less/sscanf Check the documentation.
Y_Less Pawn Scripting 1 464 2021-05-15, 09:59 AM
  Thread: [SOLVED] How to Use Pragma ? From #Pragma tabsize 0
Post: RE: [SOLVED] How to Use Pragma ? From #Pragma tabs...

Radical Wrote: (2021-05-14, 09:59 PM) -- Y_Less Wrote: (2021-05-14, 09:01 PM) -- The real question is why are you disabling so many warnings?  They are important. -- It gets a lot of warnings when...
Y_Less Pawn Scripting 15 2,659 2021-05-15, 09:57 AM
Pages (16): « Previous 1 2 3 4 5 … 16 Next »
 

© Burgershot - Powered by our Community and MyBB Original Theme by Emerald