Author Topic: how to make samp maps  (Read 795 times)

Offline s0nicTz

  • Banned
  • Jr. Member
  • *
  • Posts: 17
  • [Trusted Player]
  • Location: United States of America
Re: how to make samp maps
« Reply #15 on: November 17, 2012, 07:58:24 pm »
MTA IS OLD

Offline [YG]Jono

  • Sr. Member
  • *
  • Posts: 998
  • Loyal, Honorable & Experienced Admin at YG 0.3x!
  • Location: Melbourne, Australia
  • In-Game: [YG]Jono
Re: how to make samp maps
« Reply #16 on: February 11, 2013, 05:31:47 am »
MTA IS OLD

Not exactly.

Nice Tutorial Counter!

Thanks to [xB]SpiDeY

Offline dude

  • Level 5
  • Sr. Member
  • *
  • Posts: 385
  • Spaghetti
  • Location: The Netherlands
    • www.meatspin.com
  • In-Game: dude
Re: how to make samp maps
« Reply #17 on: April 29, 2013, 12:42:30 am »
Can you give a tutorial on how to make loops? :c

Offline Lordz

  • Beta Tester
  • Sr. Member
  • ****
  • Posts: 1238
  • Location: Earth
    • RBTDM
Re: how to make samp maps
« Reply #18 on: April 29, 2013, 10:39:26 am »
Can you give a tutorial on how to make loops? :c
Why do you need to loop here? Anyway, this is how a loop goes on SA-MP scripting:
Code: [Select]
for(new a = 0; a< 3; a++)
{
 print(a);
}
In this loop, it loops around 3 times as 'a' is < 3. And then prints the output of a. As it's rounding 3 times, and 'a' gets increased on loop (a++ = increasing) it comes under values '1, 2 and 3'
Output:
1
2
3

For object coding also loops can be useful.

Offline dude

  • Level 5
  • Sr. Member
  • *
  • Posts: 385
  • Spaghetti
  • Location: The Netherlands
    • www.meatspin.com
  • In-Game: dude
Re: how to make samp maps
« Reply #19 on: April 29, 2013, 12:13:11 pm »
No >_< i want to know how to make one in mta :c not using a code

Offline Lordz

  • Beta Tester
  • Sr. Member
  • ****
  • Posts: 1238
  • Location: Earth
    • RBTDM
Re: how to make samp maps
« Reply #20 on: April 29, 2013, 02:42:48 pm »
No >_< i want to know how to make one in mta :c not using a code
Sorry for misunderstanding the loop you meant, in MTA if you want to loop with objects; you can create objects in a loop way. Or to move any objects just like loop, for that you need to CODE.

Offline FRiZZE

  • Trusted Player
  • Jr. Member
  • *
  • Posts: 57
  • Location: Argentina
Re: how to make samp maps
« Reply #21 on: April 30, 2013, 07:14:06 pm »
Good Tutorial  ;) Thanks ._.