function list in pawno
#1

I made an include with some functions and just wana know how i can get them funtions to show in the function list on the right hand side of pawno IDE? its not realy a problem but would make life easier.
thanks in advance.
Reply
#2

Options => Show function list.
Reply
#3

Quote:
Originally Posted by Carvos
Options => Show function list.
He already has it open...

#include the file, and then restart pawno. It should appear. Try commenting the function header if it doesn't
Reply
#4

pawn Код:
//native YourFunction(params);
// DONT REMOVE THE COMMENT!
Reply
#5

yes i already have the window open and it shows the name of my include just not the functions inside it.
Quote:
Originally Posted by [03
Garsino ]
pawn Код:
//native YourFunction(params);
// DONT REMOVE THE COMMENT!
where do i put that?
That has no effect if i dont remove the comments and if i do i get errors when using the include.
Reply
#6

In your include ofc.. Replacing 'YourFunctionName' and params with the functions name & params.
Reply
#7

nvr mind lol i cant get it to happen like i said its not realy a problem thanks for help anway
Reply
#8

example.inc

pawn Код:
#include <a_samp>

/*
native Example(Float:X, Float:Y, Float:Z, Float:Size, Float:View);
*/


stock Example(Float:X, Float:Y, Float:Z, Float:Size, Float:View)
{
    // something here
    return 1;
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)