Posts: 96
Threads: 41
Joined: May 2010
Reputation:
0
Hello WOrld, my name is PAnormitis, I am a newbe scripter and I need your help if you can help me! I want to study a very simple gamemode but I can't find one, can you suggest me a very simple one to study and learn! (I don't care what type of gamemode)
Posts: 96
Threads: 41
Joined: May 2010
Reputation:
0
Is there any easy RP script for beginners to study??
Posts: 2,726
Threads: 85
Joined: Jul 2010
Reputation:
0
Well, you can use Vortex Roleplay, Godfather is bad for learning, in GF you just learn to use slowest methods and [ 256 ] strings. So, Vortex RP.
Posts: 1,152
Threads: 11
Joined: Feb 2010
Reputation:
0
new string[x], X defines how many cells are reserved for that string, if you do new string[256] it will reserve 256 cells for that string, but since most strings are not bigger than 128, it's useless, so there are still 256-128 = 128 unused slots, wich affects you're ram.
Posts: 2,593
Threads: 38
Joined: Aug 2007
Reputation:
0
Each cell represents 4 bits of ram, so it dynamically contains a number (which can represent a letter, float etc). So string[128] can hold 128 letters, numbers, whatever
Read beginning guides here wiki.sa-mp.com