Nein patoo,die funktionieren so nicht mehr.Sehe auch gerade erst,dass dieser Teil im Tutorial #3 fehlt.Bin mir eigentlich sicher,Ich hätte den Teil dazu damals geschrieben :/.
ZitatAlles anzeigenImportant: Since v0.3 OnPlayerCommandText cannot be used anymore (also ZCMD_NO_CALLBACK option has been removed), but there are two new callbacks instead:
OnPlayerCommandReceived(playerid, cmdtext[])
This one is called when someone sends a command. If you return 0 here, the command won't be performed.
OnPlayerCommandPerformed(playerid, cmdtext[], success)
And this one gets called after command execution, here if you do "return 0" the player will see standard "Unknown command" message. The "success" parameter is equal to value returned by command function returns (if it doesn't exist success will be 0).
Auf die schnelle würde Ich sagen,dass es funktionieren würden wenn du die Commands so einfügst:
public OnPlayerCommandPerformed(playerid, cmdtext[], success) {
if(!success) {
if(!strcmp(cmdtext,"/bla")) {
}
// usw
}
return 0;
}
Werde das demnächste noch ins Tutorial einfügen.
//Edit: Klammer eingefügt.