Quote:
Originally Posted by WildCard65
Well, try porting 8000 lines of code over to pure 1.7 syntax. Not even 50% done yet.
|
I did that in 2 minutes
first replace ALL with
"new Float:" -> "float "
"new bool:" -> "bool "
"decl String:" -> "char "
"new String:" -> "char "
"new Handle:" -> "Handle "
"Action:" -> "Action "
Then finally, "new" -> "int"
That part handles the variable declarations, for function parameters...
"&Handle:" -> "Handle &"
so on with the referenced variables.
Strings must be turned to char manually though along with int being added to the ints.
The rest to use methodmaps should take the rest of the time.
__________________