Jump to content

Additional Script Command for Math Function: abs(x);


Recommended Posts

Posted

This is just a additional script command for Math Function. Since I dont know yet on how to make a .diff file we will just do it manually.

Function: abs(<numbe);

1.) Edit src/map/script.c

2.) Find BUILDIN_FUNC(distance) then add this below

//JayPee Additional Math Function: absolute

BUILDIN_FUNC(abs)
{
int a;
int x;
x = script_getnum(st,2);
a = abs(x);
script_pushint(st,a);
return 0;
}

3.) Now find BUILDIN_DEF(set,"rv"), then add this below.

BUILDIN_DEF(abs,"i"), //JayPee

4.) Recompile your server.

  • 1 month later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...