• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!
  • 2026 staff recruitment is open! Check it out and consider applying!

Search results

  1. wesoly136

    Svargrond arena TFS 0.4

    How did you get tfs 0.4 ? I dont think that you had it :P
  2. wesoly136

    [mysql] Query that gives points and takes items

    Need it for storages :P
  3. wesoly136

    [mysql] Query that gives points and takes items

    Okay, this scripts rox but I cant rep you If I will remember I will rep you in the future :*
  4. wesoly136

    [mysql] Query that gives points and takes items

    Oh, so sorry, Im tired today :S
  5. wesoly136

    [mysql] Query that gives points and takes items

    Its still problematicaly, I wanted to do it for all players saying/executing one command :S
  6. wesoly136

    Auto Vocation Change At Level 200

    Right my bad :P
  7. wesoly136

    [mysql] Query that gives points and takes items

    Could you say me how it works, and the player which will get points have to be online ?
  8. wesoly136

    Auto Vocation Change At Level 200

    function onAdvance(cid, skill, oldLevel, newLvel) if isPlayer(cid) and skill == SKILL_LEVEL and newLvel >= 200 then setPlayerPromotionLevel(cid, 2) doPlayerSendTextMessage(cid, 22,"You are now "..getPlayerVocationName(cid)..".") end return true end With advance I...
  9. wesoly136

    [mysql] Query that gives points and takes items

    Yes but I want it to delete it from all players , so only remove 'and player_id = xx' ??
  10. wesoly136

    problem in config.lui for 8.54

    I'm very weak at LUI sorry :/
  11. wesoly136

    [mysql] Query that gives points and takes items

    Ok, it can be two different queries. Something like that but I don't know how to write it correctly UPDATE accounts SET premium_points = premium_points + 30 WHERE player_id AND players_items[ AND itemtype] = 9999; And the second that removes these items UPDATE players_items DELETE [hmm...
  12. wesoly136

    [mysql] Query that gives points and takes items

    Because I want to restart lvls and pay for items with premium ppoints :P
  13. wesoly136

    [mysql] Query that gives points and takes items

    I dont need it to a script, I want to execute it in phpmyadmin for ALL players
  14. wesoly136

    [mysql] Query that gives points and takes items

    Im very weak at mysql, I need a query that takes item with id which I will complete and gives to account>premium_points and amount of points I will set too.
  15. wesoly136

    [mysql] Query that gives points and takes items

    Hi! I need a query that will take an item from player and give them amount of points. For example. Account manager has item with id 9999 and When I execute the query he will lose this item and get points which I will write in query :P It should work for all players in database...
  16. wesoly136

    Simple Action lever script but not for me.... :/

    function onUse(cid, item, frompos, item2, topos) local item1pos = {x=frompos.x+1, y=frompos.y, z=frompos.z, stackpos=255} local item2pos = {x=frompos.x+2, y=frompos.y, z=frompos.z, stackpos=255} local item1 = getThingFromPos(item1pos) local item2 = getThingFromPos(item2pos) if item1.itemid ==...
  17. wesoly136

    Color Numbers

    Login on GM and write '/y' and number 0-256
  18. wesoly136

    Simple Action lever script but not for me.... :/

    also we got (random: 2-10) platinum coins after switch lever with items! Dont understand :/
  19. wesoly136

    Item on Advance

    I don't know shorter way to do it :/ function onAdvance(cid, skill, oldlevel, newlevel) if isSorc(cid) then config = { [50] = {reward = 1234, count = 1}, [60] = {reward = 2345, count = 2} } elseif isDruid(cid) then config = { [50] = {reward = 1234, count =...
  20. wesoly136

    Lever remove wall (need item) HELP

    The ring should to be placed on a floor ? local itempos = {x=480, y=169, z=7, stackpos=1} change to local itempos = {x=480, y=169, z=7, stackpos=255}
Back
Top