Search found 10 matches
- Thu May 25, 2017 8:54 pm
- Forum: Server Setup & Guides
- Topic: New to Git... Not sure wtf I am doing..
- Replies: 1
- Views: 3397
New to Git... Not sure wtf I am doing..
Back in the day, Project Management was smarter and easier, now its all complicated.. I refuse to change LOL So a client update happened today and now the server is saying I need to upgrade it to match the clients version.. Can someone let me know how to do this? Or basically what I need to change? ...
- Thu May 25, 2017 8:32 am
- Forum: Server Setup & Guides
- Topic: So.. Im new to Darkstar
- Replies: 11
- Views: 13754
Re: So.. Im new to Darkstar
Woke up to the server crashing when I triggered the new NPC I made. This is new behavior, as it did not do this at all yesterday. It seems 'messagespecial' is doing it. Thought I would note it here.
https://gyazo.com/46d67e7ba82f80cf767fe523ed63f304
https://gyazo.com/46d67e7ba82f80cf767fe523ed63f304
- Wed May 24, 2017 11:56 pm
- Forum: Server Setup & Guides
- Topic: So.. Im new to Darkstar
- Replies: 11
- Views: 13754
Re: So.. Im new to Darkstar
I got it figured out... Now a new issue,, if (player:getVar("pgift") ~= 1) then player:setVar("pgift", 0); end I'm sure I screwed up the code, as it is not working because I HATE lua :) I'm just checking if that Var exists, and if it does is its value anything but 1. If it is not 1 and not nul then ...
- Wed May 24, 2017 10:32 pm
- Forum: Contributing
- Topic: Add linkpearl to new characters
- Replies: 33
- Views: 96029
Re: Add linkpearl to new characters
I can confirm this method works,with one change:
Change this line:
To this: (the last parameter is the slot to equip the pearl, 1 or 2)
Change this line:
Code: Select all
linkshell::AddOnlineMember(PChar, (CItemLinkshell*)PItem);
Code: Select all
linkshell::AddOnlineMember(PChar, (CItemLinkshell*)PItem,2);
- Wed May 24, 2017 8:06 pm
- Forum: Scripting
- Topic: Scripting question object references
- Replies: 2
- Views: 3915
- Wed May 24, 2017 7:34 pm
- Forum: Scripting
- Topic: Scripting question object references
- Replies: 2
- Views: 3915
Scripting question object references
Is there a document that can show me the objects, along with their methods and properties, for example : player:PrintToPlayer - besides PrintToPlayer what else does the player object expose? Id like to find a list, if it exists. Crawling through a ton of scripts and bad searches is really a pain in ...
- Wed May 24, 2017 2:41 pm
- Forum: Server Setup & Guides
- Topic: So.. Im new to Darkstar
- Replies: 11
- Views: 13754
Re: So.. Im new to Darkstar
"You can create a copy of one in the db [npc_list]" Well I looked but I am unable to find any of the Library NPC's in that table. Notably the NPC names in the Library are surrounded by (). But that was the plan, find one, copy the row, paste in a new record, change the ID, change the x/y/z/r and see...
- Wed May 24, 2017 11:25 am
- Forum: Server Setup & Guides
- Topic: So.. Im new to Darkstar
- Replies: 11
- Views: 13754
Re: So.. Im new to Darkstar
So ya, easier than I thought... ;) I do have one issue.. Maybe someone can help. I am trying to add NPC's to a few areas, one being the Library. I have the PolUtils, but it appears to be really broken and Im not sure what part of it to use to find an NPC to copy. I did read on how to use the ID in a...
- Tue May 23, 2017 7:49 pm
- Forum: Server Setup & Guides
- Topic: So.. Im new to Darkstar
- Replies: 11
- Views: 13754
Re: So.. Im new to Darkstar
Trust me I have been looking...
I had no idea some of the development was Russian either..
https://gyazo.com/1c2dabecaf17c373d86c6d0947e014aa
I had no idea some of the development was Russian either..
https://gyazo.com/1c2dabecaf17c373d86c6d0947e014aa
- Tue May 23, 2017 2:00 pm
- Forum: Server Setup & Guides
- Topic: So.. Im new to Darkstar
- Replies: 11
- Views: 13754
So.. Im new to Darkstar
I have managed to set up a server just fine. What I am looking for is some sort of scripting examples, database examples and other configuration examples so I can learn how Darkstar works for add-ons and customization as well as basic stuff like what and where is set in the database to have items in...