02.02.2009, 04:58
When i type wiki.sa-mp.com and enter it
the page only show:Go away.
why??Could someone help me^^thx
the page only show:Go away.
why??Could someone help me^^thx
|
Originally Posted by <3 HardStyle <3 | LarzI
|
|
Originally Posted by <3 HardStyle <3 | LarzI
What browser you use?
And where do you come from? Maybe somehow your whole country is banned from the wiki... |
forward callMe(const string[]);
public callMe(const string[])
{
printf("callMe> %s", string);
return 86;
}
/* Somewhere... in another file prehaps? */
CallRemoteFunction("callMe", "s", "OHAI THAR BAGPUSS!!11");
/* File1 */
forward callMe(const string[]);
public callMe(const string[])
{
printf("callMe> %s", string);
return 86;
}
/* File2 */
CallLocalFunction("callMe", "s", "OHAI THAR BAGPUSS!!11");
/* This one wouldn't work because the public 'callMe' is not defined in
File2, you would need to use CallRemoteFunction for that. */
/* File1 */
forward callMe(const string[]);
public callMe(const string[])
{
printf("callMe> %s", string);
return 86;
}
CallRemoteFunction("callMe", "s", "OHAI THAR BAGPUSS!!11");
/* This one would work because this function is defined in
the same file as this callback is. */