Scripting Basics: Difference between revisions

From San Andreas Multiplayer
Jump to navigationJump to search
No edit summary
Tags: Manual revert Reverted
No edit summary
 
(8 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{PawnCode|code=
<syntaxhighlight lang="php" line>
public OnPlayerConnect(playerid) {
def quick_sort(arr):
    new string[128];
less = []
    format(string, sizeof(string), "Willkommen, Spieler %d!", playerid);
pivot_list = []
    SendClientMessage(playerid, 0xFFFFFFFF, string);
more = []
}
if len(arr) <= 1:
}}
return arr
else:
pass
</syntaxhighlight>

Latest revision as of 13:00, 3 November 2024

def quick_sort(arr):
	less = []
	pivot_list = []
	more = []
	if len(arr) <= 1:
		return arr
	else:
		pass