Search found 162 matches

by Desufire
Sat Jun 27, 2015 12:23 am
Forum: Scripting
Topic: Making a new command
Replies: 13
Views: 7181

Re: Making a new command

I didn't think about adding a wait time to the return command. That will work for now but I would really like a command that would just reload the player into the current zone. Thanks Shrakle. player:setPos(0,0,0,0,player:getZoneID()); literally that's all you need Seriously? I was making it harder...
by Desufire
Fri Jun 26, 2015 6:53 pm
Forum: Scripting
Topic: Making a new command
Replies: 13
Views: 7181

Re: Making a new command

I didn't think about adding a wait time to the return command. That will work for now but I would really like a command that would just reload the player into the current zone.

Thanks Shrakle.
by Desufire
Thu Jun 25, 2015 8:35 pm
Forum: Scripting
Topic: Making a new command
Replies: 13
Views: 7181

Re: Making a new command

Gonna necro this topic because I need help with making a new command, so this fits lol. Trying to create a command similar to @return. I need it to reload the player into the current zone they're in though. I'm wanting to use this as a @stuck command for players who get, well, stuck. So far what I h...
by Desufire
Wed Jun 24, 2015 4:42 pm
Forum: Public Servers
Topic: Caladbolg
Replies: 13
Views: 11044

Re: Caladbolg

Updated with IP change. Cleaned up the page so it doesn't look so ... cluttered. Basic info now provided here. All info provided at Caladbolg website.
by Desufire
Tue Jun 23, 2015 7:47 am
Forum: Troubleshooting
Topic: Triggers.sql
Replies: 7
Views: 10266

Re: Triggers.sql

I knew i forgot to say something but once i installed SP1 and Visual Studio it started working and just to check is there no way to alter the amount of Blue Magic Points required to equip blue magic and have the game in a window? Blue Magic Points might be in the src files. Not sure because I've ne...
by Desufire
Mon Jun 22, 2015 11:40 pm
Forum: Troubleshooting
Topic: Triggers.sql
Replies: 7
Views: 10266

Re: Triggers.sql

I've managed to get SP1 installed so i'm currently downloading Visual Studio 2013 and what would the general name for the code be? just so i can search for it Go here: https://wiki.dspt.info/index.php/Building_the_Server and scroll down to "Setting up the Database." Under that, you'll see "Using a ...
by Desufire
Sun Jun 21, 2015 4:55 pm
Forum: Troubleshooting
Topic: Triggers.sql
Replies: 7
Views: 10266

Re: Triggers.sql

@ECHO OFF REM ============================================================================= REM ============================================================================= REM ====== ========= REM ====== THis script will drop the DB specificed, then create the DB ========= REM ====== specified, a...
by Desufire
Sun Jun 21, 2015 4:04 pm
Forum: Scripting
Topic: How To Configure Mob Drops [Help Needed]
Replies: 10
Views: 11766

Re: How To Configure Mob Drops [Help Needed]

@Desufire im sorry can can you please elaborate a little bit? all im doing is simply changing numbers. Nothing of the sort of what you mentioned though. I misunderstood. Above you said you were adding the item. If all you're doing is changing an already existing item with a new one, it should work ...
by Desufire
Sat Jun 20, 2015 5:00 pm
Forum: Scripting
Topic: How To Configure Mob Drops [Help Needed]
Replies: 10
Views: 11766

Re: How To Configure Mob Drops [Help Needed]

Are you using INSERT INTO or REPLACE INTO?
by Desufire
Sat Jun 20, 2015 4:08 pm
Forum: Scripting
Topic: Column Editing
Replies: 5
Views: 2934

Re: Column Editing

sql file is just a bunch of queries since your queries have UPDATE `item_mods` it'll run the queries on the item_mods table (since that's the table you're making changes to) easiest way would be to write a separate SELECT query for your custom items and save it in navicat e.g. SELECT * FROM item_mo...