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

Pages (3): 1 2 3 Next »
Search Results
Post Author Forum Replies Views Posted [asc]
  Thread: Post your code snippets here
Post: RE: Post your code snippets here

IsValidRoleplayName without regex. PHP Code: -- stock IsValidRoleplayName(const name[], short_name_len = 3) {     new         len = strlen(name),         underscore_pos = strfind(name, "_", ...
Tama Pawn Scripting 18 16,441 2021-10-27, 03:59 PM
  Thread: command-guess
Post: command-guess

command-guess A guesser command who uses levenshtein distance algoritm written in pawn. Now it's support ZCMD-like command processor! Maybe if you want this to support more command processor, just m...
Tama Libraries 1 1,001 2021-02-23, 10:55 AM
  Thread: CODE: A Hands-on Approach
Post: RE: CODE: A Hands-on Approach

Seems good, +1
Tama Tutorials 3 2,782 2020-12-16, 02:07 AM
  Thread: SA-MP Random Name
Post: SA-MP Random Name

When i'm bored, sometimes i just starring at blank screen until i got some idea. So, in this case i am creating a library called SA-MP Random Name You can download it here: Kirima2nd/samp-random-name...
Tama Libraries 1 1,179 2020-12-12, 01:56 AM
  Thread: The Language Thread
Post: RE: The Language Thread

I can speak a few languages such: Indonesia but not so smoothly. English but confusing. Javanese because i transfered school to East Java but can't read Aksara thingy. Sunda but i can only say 'euy' o...
Tama Life 24 17,692 2020-11-06, 07:50 AM
  Thread: Indonesia Sub Forum
Post: Indonesia Sub Forum

Karena gak ada yang serius, mari aku buat disini. Rules simple, share apa yang kamu punya, diskusi apa yang kamu mau, share kode, dll. Don't be a dick, be respectful to other people. Ok that's it...
Tama Other 0 1,074 2020-11-06, 07:42 AM
  Thread: Another platform for coding.
Post: RE: Another platform for coding.

Atom is the best code editor for html Visual studio code also the best editor for editing such pawn, c++ console app, c# console app, android, etc. It's up to you what type language you want to de...
Tama Programming 10 9,630 2020-08-28, 07:53 AM
  Thread: Sscanf problem
Post: RE: Sscanf problem

Pinch Wrote: (2020-08-27, 09:41 PM) -- Nope, you cannot use s without length. -- Still work but you're get an error. That code it's just example for older version.
Tama Pawn Scripting 5 4,252 2020-08-28, 07:49 AM
  Thread: [Help] Can't change avatar
Post: RE: [Help] Can't change avatar

robertocaribbean Wrote: (2020-08-28, 02:51 AM) -- Tama Wrote: (2020-08-27, 08:23 PM) -- Make sure your avatar meets requirements of: Code: -- The maximum dimensions for avatars are: 150x150 pixe...
Tama Chat 4 4,099 2020-08-28, 07:47 AM
  Thread: Sscanf problem
Post: RE: Sscanf problem

I think it's nearly impossible using only sscanf, you should replace '@' and '.' to space and check it like this: PHP Code: -- if (sscanf(inputtext, "{sss}")) -- Or you can just see my code ...
Tama Pawn Scripting 5 4,252 2020-08-27, 09:10 PM
  Thread: [Help] Can't change avatar
Post: RE: [Help] Can't change avatar

Make sure your avatar meets requirements of: Code: -- The maximum dimensions for avatars are: 150x150 pixels. The maximum file size for avatars is 4.91 MB. --
Tama Chat 4 4,099 2020-08-27, 08:23 PM
  Thread: Best server OS/Hardware
Post: RE: Best server OS/Hardware

Pinch Wrote: (2020-08-25, 07:03 PM) -- Tama Wrote: (2020-08-25, 04:40 PM) -- I think you should stick to Ubuntu 14 if you think that is fastest than ubuntu 18. But for me, i would like to have Ubun...
Tama General Discussions 5 4,265 2020-08-25, 10:51 PM
  Thread: Post your Desktop Megathread
Post: RE: Post your Desktop Megathread

Pinch Wrote: (2020-08-25, 07:53 PM) -- Tama Wrote: (2020-08-25, 07:34 PM) -- https://images2.imgbox.com/c1/0a/vBHLQUDC_o.png -- Apple Music... -- Nope, it's just a default Elementary OS app but ...
Tama Tech 42 32,728 2020-08-25, 10:50 PM
  Thread: Post your Desktop Megathread
Post: RE: Post your Desktop Megathread

https://images2.imgbox.com/c1/0a/vBHLQUDC_o.png
Tama Tech 42 32,728 2020-08-25, 07:34 PM
  Thread: Can anyone give me the full archive of Y_Less tutorials?
Post: RE: Can anyone give me the full archive of Y_Less ...

Use wayback machine first, if you didn't found it you can post here. https://web.archive.org/web/20141030014915/http://forum.sa-mp.com/showthread.php?t=57018
Tama General Discussions 1 2,181 2020-08-25, 04:43 PM
  Thread: Best server OS/Hardware
Post: RE: Best server OS/Hardware

I think you should stick to Ubuntu 14 if you think that is fastest than ubuntu 18. But for me, i would like to have Ubuntu LTS which is 20.04.1 (for now) which is makes you not worrying about system ...
Tama General Discussions 5 4,265 2020-08-25, 04:40 PM
  Thread: If you had infinite money, what type of company would you start?
Post: RE: If you had infinite money, what type of compan...

Hmm, for me of course i will support burgershot and open.mp with that money. Making a very big project that involves GTA community. And making a big project to beat google company so we can conque...
Tama Life 50 40,970 2020-08-08, 10:34 AM
  Thread: "Attach player to player" to carry or move other user
Post: RE: "Attach player to player" to carry or move oth...

Javi Wrote: (2020-08-07, 07:44 AM) -- Tama Wrote: (2020-08-06, 01:31 AM) -- I don't think that animation is available on vanilla GTA:SA but you can do that on your script bro. For Example: PHP ...
Tama Questions and Suggestions 3 3,379 2020-08-08, 10:31 AM
  Thread: Today I learned - Share your newly found knowledge!
Post: RE: Today I learned - Share your newly found knowl...

Today i learn something, using ! without manually set true\false. Usage: PHP Code: -- main() { var1 = !var1; } -- Instead of: PHP Code: -- main() { var1 = true; var1 = false; } --
Tama Pawn Scripting 1 3,408 2020-08-06, 09:25 AM
  Thread: "Attach player to player" to carry or move other user
Post: RE: "Attach player to player" to carry or move oth...

I don't think that animation is available on vanilla GTA:SA but you can do that on your script bro. For Example: PHP Code: -- forward DragPlayer(playerid, toplayerid, interval); public DragPla...
Tama Questions and Suggestions 3 3,379 2020-08-06, 01:31 AM
Pages (3): 1 2 3 Next »

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